Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 291 down vote accepted

Using scan should do the trick:

string.scan(/regex/)
share|improve this answer
Sweet, that does it! Thanks Jean! – Chris Bunch Sep 17 '08 at 5:59
3  
But what abut this case? "match me!".scan(/.../) = [ "mat", "ch " "me!" ], but all occurrences of /.../ would be [ "mat", "atc", "tch", "ch ", ... ] – Michael Dickens Dec 25 '11 at 23:22
4  
Not it wouldn't be. /.../ is a normal greedy regexp. It won't backtrack on matched content. you could try to use a lazy regexp but even that probably won't be enough. have a look at the regexp doc ruby-doc.org/core-1.9.3/Regexp.html to correctly express your regexp :) – Jean Jan 3 '12 at 15:31
@MichaelDickens There are ways of making Perl regexes do that, such that you can pull out all the overlapping matches, too, but insofar as I am aware, only Perl itself and PCRE support that sort of match operation. – tchrist Mar 24 '12 at 15:29
this seems like a Ruby WTF... why is this on String instead of Regexp with the other regexp stuff? It isn't even mentioned anywhere on the docs for Regexp – Anentropic Mar 12 at 11:36
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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