match?(pattern)
Instance Public methods
Tests whether the given pattern
is matched from the current
scan pointer. Returns the length of the match, or nil
. The
scan pointer is not advanced.
1 2 3 4 | s = StringScanner. new ( 'test string' ) p s.match?(/\w+/) # -> 4 p s.match?(/\w+/) # -> 4 p s.match?(/\s+/) # -> nil |
Please login to continue.