4

How do I obtain an array of the indexes (or positions) all occurrences of a regexp in a string?

example_string= "hello how are you?

I would like to obtain the array [1,12] for regexp /e/

2 Answers 2

8

Here's one approach to get an array of indexes of matches:

example_string = "hello how are you?"

example_string.enum_for(:scan, /e/).map { Regexp.last_match.begin(0) }

# => [1, 12]

Hope it helps!

Sign up to request clarification or add additional context in comments.

Comments

4

This is a variant of @Zoren's excellent answer:

example_string = "hello how are you?"

example_string.gsub(/e/).with_object([]) { |_,a| a << Regexp.last_match.begin(0) }
 #=> [1, 12] 

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.