The docs for qr/STRING/
say:
This operator quotes (and possibly compiles) its
STRING
as a regular expression.
What worries me is the part in parentheses. I can't think of any cases where I don't want it to compile a regex out of STRING
. Is this parenthetical statement just weasel words to cover some future case where compiling is not desired or is there a case today (or in an earlier version of Perl) where STRING
will not be compiled?