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

Thanks hdb, I checked, this will work for me in 90% cases... Thanks for your time... :)
  • Comment on Re^4: Perl Regex Match (Compare Only AlphaNumeric)

Replies are listed 'Best First'.
Re^5: Perl Regex Match (Compare Only AlphaNumeric)
by hdb (Monsignor) on Aug 23, 2013 at 12:08 UTC

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