60件ヒット
[1-60件を表示]
(0.029秒)
クラス
-
Scanf
:: FormatSpecifier (24) -
Scanf
:: FormatString (24) - String (12)
キーワード
-
last
_ match _ tried (6) -
last
_ spec _ tried (6) - matched (6)
-
matched
_ count (6) -
matched
_ string (6) -
mid
_ match? (6) - prune (6)
- scanf (12)
- width (6)
検索結果
先頭5件
-
Scanf
:: FormatSpecifier # matched (6102.0) -
@todo
...@todo... -
Scanf
:: FormatSpecifier # matched _ string (6102.0) -
@todo
...@todo... -
Scanf
:: FormatSpecifier # mid _ match? (6102.0) -
@todo
...@todo... -
Scanf
:: FormatSpecifier # width (6102.0) -
@todo
...@todo... -
Scanf
:: FormatString # last _ match _ tried (6102.0) -
@todo
...@todo... -
Scanf
:: FormatString # last _ spec _ tried (6102.0) -
@todo
...@todo... -
Scanf
:: FormatString # matched _ count (6102.0) -
@todo
...@todo... -
Scanf
:: FormatString # prune(n=matched _ count) (102.0) -
@todo
...@todo... -
String
# scanf(format) -> Array (80.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
...列が見つからない場合は空の配列を
生成して返します。
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
ブロックを指定した場合は scanf を継続して実行し、順次
見つかった文字列を変換したオブジェ......'scanf'
str = "123 0x45 678 0x90"
p str.scanf("%d%x"){|n, s| [n, s]}
#=> [[123, 69], [678, 144]]
formatに完全にマッチしていなくても、部分的にマッチしていれば、
ブロックは実行されます。
require 'scanf'
str = "123 abc 456 def"
ret = str.scanf("%s%d......def", nil]]
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。
使用例:
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
===[a:format] scanf... -
String
# scanf(format) {|*ary| . . . } -> Array (80.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
...列が見つからない場合は空の配列を
生成して返します。
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
ブロックを指定した場合は scanf を継続して実行し、順次
見つかった文字列を変換したオブジェ......'scanf'
str = "123 0x45 678 0x90"
p str.scanf("%d%x"){|n, s| [n, s]}
#=> [[123, 69], [678, 144]]
formatに完全にマッチしていなくても、部分的にマッチしていれば、
ブロックは実行されます。
require 'scanf'
str = "123 abc 456 def"
ret = str.scanf("%s%d......def", nil]]
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。
使用例:
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
===[a:format] scanf...