http://www.perlmonks.org?node_id=1050657


in reply to Re^4: Perl Regex Match (Compare Only AlphaNumeric)
in thread Perl Regex Match (Compare Only AlphaNumeric)

You can make it more general. If you replace '\s+' by something like '[^a-zA-Z0-9]+' then it will match more often.