# Solution for matching "é" use locale ; my $test = "é é é é " ; $test =~ /[[:alpha:]]/ and print "YEAH" ; #OR $test =~ /[\w]/ and print "Thanx" ;