How does Rubular (Example) get the match groups?
/regex(?<named> .*)/.match('some long string')
match method (in example) only returns the first match.
scan method returns an array without named captures.
What is the best way to get an array of named captures (no splitting)?
I've always assumed that Rubular works something like this:
If we use
enum_for
and$~
(an alias forRegexp.last_match
) we can make it a bit more Rubyish: