Method: StringScanner#scan_full
- Defined in:
- strscan.c
#scan_full(pattern, advance_pointer_p, return_string_p) ⇒ Object
Tests whether the given pattern is matched from the current scan pointer. Advances the scan pointer if advance_pointer_p is true. Returns the matched string if return_string_p is true. The match register is affected.
“full” means “#scan with full parameters”.
731 732 733 734 735 |
# File 'strscan.c', line 731 static VALUE strscan_scan_full(VALUE self, VALUE re, VALUE s, VALUE f) { return strscan_do_scan(self, re, RTEST(s), RTEST(f), 1); } |