Running Perl 18.2 I was surprised to discover that I can use single and double quotes as regex delimiters without the 'm' operator.
For example, instead of writing
"/usr/bin/perl" =~ m"/perl"
I can just write
"/usr/bin/perl" =~ "/perl"
Can anyone point me to the documentation indicating which delimiters don't
need the 'm' operator?
Thanks
Andrew
