What's the best way to clear/reset all regex matching variables?
Example:
$_="this is the man that made the new year rumble"; / (is) /; / (isnt) /; say $1; # outputs "is"The example above shows that
$1isn't reset between regex operations and uses the most recent match.This is problematic when working with loops:
foreach (...){ /($some_value)/; &doSomething($1) if $1; }
Update: I didn't think I'd need to do this, but Example-2 is only an example. The question is about resetting matching variables, not the best way to implement them.
if (//)does and why it should be used. Often, when I'm on here it's because someone else didn't and I'm looking for the easiest way out of their code. In this case, my answer is the only one that answers the question I asked. Correction: mine and ikegami. – vol7ron Apr 18 '12 at 23:51