Skip to content

Instantly share code, notes, and snippets.

@gotascii
Created January 24, 2011 01:13
Show Gist options
  • Save gotascii/792649 to your computer and use it in GitHub Desktop.
Save gotascii/792649 to your computer and use it in GitHub Desktop.
class String
def named_matches(rx)
m = rx.match(self)
[Hash[m.names.collect{|n| [n, m[n]]}]]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment