http://www.perlmonks.org?node_id=679915


in reply to Re: Showing why a Regexp didn't match
in thread Showing why a Regexp didn't match

Generally you should avoid using $', $& and $'. Once they appear in your program they slow down all regular expression calls.
This is true and good advice but if you are using perl 5.10.0 or later there is the option of using /P and the variables ${^PREMATCH}, {$^MATCH}, and ${^POSTMATCH} where the cost is confined to only the regular expressions that use them.

In this case, though, there doesn't appear to be any advantage to using /P.