I tried to find fancy quotes from a string using the following Perl regular expression, but it returns false.
$text = "NBN "a joint venture with Telstra"";
if ($text =~ m/"/)
{
print "found";
}
I also tried using the \x93ascii code " " but still does not work. I'm stuck here.
Any help is appreciated.
Regards, Allen
source
share