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


in reply to Re: Determining which pattern matched
in thread Determining which pattern matched

Use local our instead of my for variables declared outside of a (?{}) and (??{}) but used inside of them. It's much safer. Your second snippet won't work if it's moved into a function, for example.

Replies are listed 'Best First'.
Re^3: Determining which pattern matched
by rubasov (Friar) on Apr 05, 2010 at 22:42 UTC
    I've just wanted to demonstrate the technic without much clutter, but you're absolutely right. I should take care to demonstrate the best practice which is using local our instead of my along with (?{ }).

    Here's a great thread explaining the reason behind this for the interested monks (including ikegami's notes): Regexes: finding ALL matches (including overlap).

      My comments in that thread were on an entirely different matter (handling backtracking through (?{}), which isn't an issue in the code here), but blokhead mentioned the issue with lexicals in that thread.