in reply to Re: 2 problems withs regexes and letters like é
in thread 2 problems withs regexes and letters like é
Simple for some, hard for me since I didn't even knew of localization.# Solution for matching "é" use locale ; my $test = "é é é é " ; $test =~ /[[:alpha:]]/ and print "YEAH" ; #OR $test =~ /[\w]/ and print "Thanx" ;
|
|---|