vote up 12 vote down star

Is there a quick way to find every match of a regular expression in Ruby? I've looked through the Regex object in the Ruby STL and searched on Google to no avail. Thanks!

flag

1 Answer

vote up 22 vote down check

this should do the trick

string.scan(/regex/)

http://www.ruby-doc.org/core/classes/String.html#M000827

link|flag
Sweet, that does it! Thanks Jean! – Chris Bunch Sep 17 '08 at 5:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.