- terminate -> self[permalink][rdoc][edit]
- clear -> self
- 
スキャンポインタを文字列末尾後まで進め、マッチ記録を捨てます。 - [RETURN]
- self を返します。
 pos = self.string.size と同じ動作です。 例 require 'strscan' s = StringScanner.new('test string') s.scan(/\w+/) # => "test" s.matched # => "test" s.pos # => 4 s[0] # => "test" s.terminate s.matched # => nil s[0] # => nil s.pos # => 11StringScanner#clear は将来のバージョンで削除される予定です。代わりに StringScanner#terminate を使ってください。