I'm new to Perl so this maybe a very stupid question but I couldn't find out :(
If I have:
$stringA =~ /regex/;
$stringB =~ m/regex/;
From my test, $stringA = $stringB. Is there any difference between them?
Thanks.
|
This is a shorthand. You can omit the
It's often better to do that since it saves writing |
||||
|
See this part of the perlop (perl operators) manpage. Scroll down to the section on |
|||
|
|
|
They are the same.
|
|||||||||||
|
$aand$bas variable names as they're both treated 'specially' by Perl. – Zaid Nov 10 '10 at 5:55$aand$b, see perldoc.perl.org/perlvar.html – Nikhil Jain Nov 10 '10 at 6:46