Skip to content

Instantly share code, notes, and snippets.

@bitprophet
Created October 19, 2009 00:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitprophet/212966 to your computer and use it in GitHub Desktop.
Save bitprophet/212966 to your computer and use it in GitHub Desktop.
irb(main):001:0> "bobsmith" =~ /(b.b)(.+)/
=> 0
irb(main):002:0> puts $1
bob
=> nil
irb(main):003:0> puts $2
smith
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment