This should be an easy question but I can\'t find anything about it.
Given a regular expression in Ruby, for every match I need to retrieve the matched patterns
You can access match data within scan like this:
"abcdefghij".scan(/\w/) {p $~}