What is the difference of doing \1 as opposed to $1 if any, or are they interchangeable in all situations.
Example:
s/([a-z]+),afklol/$1,bck/;
#against
s/([a-z]+),afklol/\1,bck/;
They both give the same result but is there any difference?
|
|
|
|
|
|
|
Straight from perldoc perlre:
|
||
|
|
|
|
They give the same result, but $1 retains its value while \1 does not. Try this:
|
||
|
|
|
I only use
This would match "foobazfoo" or "barbazbar" but not "foobazbar". You can't use In all other circumstances I use |
||||
|