From: "tomoakin (Tomoaki Nishiyama)" Date: 2012-08-08T00:51:40+09:00 Subject: [ruby-core:47059] [ruby-trunk - Feature #6802] String#scan should have equivalent yielding MatchData Issue #6802 has been updated by tomoakin (Tomoaki Nishiyama). +1 to have a method to return MatchData. This is related to (or duplicate of) #5749 and #5606. Even with the simple implementation I think to establish a standard name and specification. ---------------------------------------- Feature #6802: String#scan should have equivalent yielding MatchData https://bugs.ruby-lang.org/issues/6802#change-28712 Author: prijutme4ty (Ilya Vorontsov) Status: Open Priority: Normal Assignee: Category: Target version: Ruby should have method to obtain not an array of arrays but of MatchData objects. It can help in obtaining named groups: pattern = /x: (?\d+) y:(?\d+)/ polygon = [] text.scan_for_pattern(pattern){|m| polygon << Point.new(m[:x], m[:y]) } Not to break existing code we need unique name. Ideas? May be #each_match -- http://bugs.ruby-lang.org/