In Perl there are regular expression function:
grep, split, substr
very helpful to process text data.
My question is: Should I use these functions OR simply NO need?
I mean use
=~
my $string = "abcde67890";
if($string =~ m/a....6/) {print "use ~"};
THANK SO MUCH FOR REPLY! continuous...
I would like to ask further, if I would like to programming like this: NOT match the keyword
if($string !=~ m/keyword/) {print "howto NOT inverse match?"};
what should be the correct gramma syntax?