12件ヒット
[1-12件を表示]
(0.106秒)
別のキーワード
ライブラリ
- strscan (12)
クラス
- StringScanner (12)
検索結果
-
StringScanner
# matched _ size -> Integer | nil (18144.0) -
前回マッチした部分文字列の長さを返します。 前回マッチに失敗していたら nil を返します。
.../)
s.matched_size
end
p run("UTF-8") #=> 3
p run("EUC-JP") #=> 2
p run("Shift_Jis") #=> 2
//}
//emlist[例][ruby]{
require 'strscan'
s = StringScanner.new('test string')
s.matched_size # => nil
s.scan(/\w+/) # => "test"
s.matched_size # => 4
s.scan(/\w+/) # => nil
s.matched_size # =>...