From: duerst@... Date: 2016-01-19T02:36:53+00:00 Subject: [ruby-core:72917] [Ruby trunk - Feature #11999] MatchData#to_h to get a Hash from named captures Issue #11999 has been updated by Martin D��rst. Matthew Kerwin wrote: > I think #named_captures is the best name, since that is precisely what it returns (i.e. it never includes numbered captures.) Could it make sense to include numbered captures in the hash, too? Just thinking aloud. ---------------------------------------- Feature #11999: MatchData#to_h to get a Hash from named captures https://bugs.ruby-lang.org/issues/11999#change-56146 * Author: Shota Fukumori * Status: Open * Priority: Normal * Assignee: ---------------------------------------- ~~~ class MatchData def to_h self.names.map { |n| [n, self[n]] }.to_h end end p '12'.match(/(?.)(?.)(?.)?/).to_h #=> {"a"=>"1", "b"=>"2", "c"=>nil} ~~~ Sometimes I want to get a Hash from named capture, but currently I have to use #names + #captures. How about adding MatchData#to_h for convenience way? ---Files-------------------------------- 11999.diff (2.77 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: