values_at(*args)
  public
  
    
    
Uses each index to access the matching values, returning an array
of the corresponding matches.
m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie")
m.to_a               
m.values_at(0, 2, -2)   
   
  
    Show source    
    
      static VALUE
match_values_at(int argc, VALUE *argv, VALUE match)
{
    struct re_registers *regs;
    match_check(match);
    regs = RMATCH_REGS(match);
    return rb_get_values_at(match, regs->num_regs, argc, argv, match_entry);
}