match?

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.

s = StringScanner.new('test string')
p s.match?(/\w+/)   # -> 4
p s.match?(/\w+/)   # -> 4
p s.match?(/\s+/)   # -> nil
doc_ruby_on_rails
2015-05-16 02:48:19
Comments
Leave a Comment

Please login to continue.