When using regular expressions in Ruby, what is the difference between $1 and \1?
feedback
|
|
\1 is a backreference which will only work in the same
$1 is a global variable which can be used in later code:
(prints "The matching word was bar") | ||||
|
feedback
|
|
Keep in mind there's a third option, the block form of
You also can't use
So if you want to do anything fancy, you should use the block form of
| |||||||||
feedback
|