in reply to Re: ?: and saving backreferences
in thread ?: and saving backreferences
Did you run the code the OP posted? Since at least 5.6.1, the $1 set by the regexp inside the if is no longer in scope outside the if. The following illustrates this clearly.
'a' =~ /(.)/; { 'b' =~ /(.)/; print("$1\n"); # b } print("$1\n"); # a
This is documented in perlvar.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: ?: and saving backreferences
by BUU (Prior) on Dec 06, 2006 at 06:24 UTC |