Skip to content

Instantly share code, notes, and snippets.

@Olgagr
Created July 14, 2013 16:01
Show Gist options
  • Save Olgagr/5994723 to your computer and use it in GitHub Desktop.
Save Olgagr/5994723 to your computer and use it in GitHub Desktop.
Construct to match something but don't count it as a capture
str = 'abc def ghi'
m = /(abc) (?:def) (ghi)/.match str
# m[0] -> abc
# m[2] -> ghi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment