Skip to content

Ruby Global $& (DollarAmpersand)

☈king edited this page Jan 30, 2013 · 5 revisions

The $& global is the string matched by the last successful match.

If you do this:

str = 'hello goodbye'; str[/good/]

Then this:

[ $`, $&, $' ]

Yields this:

[
    "hello ",
    "good",
    "bye"
]
Clone this wiki locally