Hi All,
I facing a problem in matching flat character symbol.
I cant able to find the · this character in the word.
Here is my script.
while running above script it prints "Not Match Found".
whats arong in this code.
thanks in advance
I facing a problem in matching flat character symbol.
I cant able to find the · this character in the word.
Here is my script.
Code:
$word = "Baal·bek";
if($word=~m#·#)
{
print "Match found";
}
else
{
print "Not Match found";
}
whats arong in this code.
thanks in advance
Comment