Results for: "match"

Returns true if object is another MatchData object whose target string, regexp, match, and captures are the same as self, false otherwise.

Returns true if object is another MatchData object whose target string, regexp, match, and captures are the same as self, false otherwise.

Returns the array of captures, which are all matches except m[0]:

m = /(.)(.)(\d+)(\d)/.match("THX1138.")
# => #<MatchData "HX1138" 1:"H" 2:"X" 3:"113" 4:"8">
m[0]       # => "HX1138"
m.captures # => ["H", "X", "113", "8"]

Related: MatchData.to_a.

Search took: 4ms  ·  Total Results: 1903