mtch.values_at([index]*) â array
Instance Public methods
Uses each index to access the matching values, returning an array of the corresponding matches.
1 2 3 | m = /(.)(.)(\d+)(\d)/.match( "THX1138: The Movie" ) m.to_a #=> ["HX1138", "H", "X", "113", "8"] m.values_at( 0 , 2 , - 2 ) #=> ["HX1138", "X", "113"] |
Please login to continue.