regex - How to string with quotes in perl? -
my $search = "sony's"; $string = "in tv sony's walkman"; how can match of "sony's" in $string using regular expression.
my $search = "sony's"; $string = "in tv sony's walkman"; $string =~ /$search/; # not match $string =~ /$search/i; # matches case-insensitive this total beginner question. please first learn language, read book or two.
Comments
Post a Comment