regexp()
Returns the regexp.
m = /a.*b/.match("abc") m.regexp #=> /a.*b/
static VALUE match_regexp(VALUE match) { match_check(match); return RMATCH(match)->regexp; }