Skip to content

Instantly share code, notes, and snippets.

Created May 4, 2013 22:49
Show Gist options
  • Save anonymous/99f75ee1786e974f8094 to your computer and use it in GitHub Desktop.
Save anonymous/99f75ee1786e974f8094 to your computer and use it in GitHub Desktop.
/(?<bar>.+)/ =~ "Lorem Ipsum"
puts bar # => "Lorem Ipsum"
CONST = /(?<foo>.+)/
CONST =~ "Lorem Ipsum"
puts foo # => undefined local variable or method `foo' for main:Object (NameError)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment