matched -> String | nil
[permalink][rdoc][edit]-
前回マッチした部分文字列を返します。前回のマッチに失敗していると nil を返します。
require 'strscan' s = StringScanner.new('test string') s.matched # => nil s.scan(/\w+/) # => "test" s.matched # => "test" s.scan(/\w+/) # => nil s.matched # => nil s.scan(/\s+/) # => " " s.matched # => " "