ライブラリ
- scanf (33)
クラス
- IO (2)
-
Scanf
:: FormatSpecifier (11) -
Scanf
:: FormatString (13) - String (2)
モジュール
- Kernel (2)
キーワード
- FormatSpecifier (1)
- FormatString (1)
- REGEX (1)
- SPECIFIERS (1)
- conversion (1)
-
count
_ space? (1) -
last
_ match _ tried (1) -
last
_ spec (1) -
last
_ spec _ tried (1) - letter (1)
- match (2)
- matched (1)
-
matched
_ count (1) -
matched
_ string (1) -
mid
_ match? (1) - new (1)
- prune (1)
-
re
_ string (1) - space (1)
-
spec
_ count (1) -
string
_ left (1) -
to
_ re (1) -
to
_ s (2) - width (1)
検索結果
先頭5件
-
Scanf (156241.0)
-
scanf ライブラリで使用する名前空間です。
scanf ライブラリで使用する名前空間です。
@see Kernel.#scanf, String#scanf, IO#scanf, Stdin#scanf -
scanf (132421.0)
-
String#scan のフォーマット指定版といえるメソッド String#scanf を定義します。
String#scan のフォーマット指定版といえるメソッド String#scanf
を定義します。
組み込みクラス String と IO を拡張します。
=== 例
require 'scanf'
p "a 10 1.2". scanf("%s %d %f") # => ["a", 10, 1.2]
p "a 10 1.2 b 20 1.5e10".scanf("%s %d %f") # => ["a", 10, 1.2]
p "a 10 1.2 b 20 1.5e10".scanf("%s %d %f") {|*v| v}
... -
String
# scanf(format) -> Array (97369.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
ブロックを指定しない場合、見つかった文字列を format に従って変
換し、そのオブジェクトの配列を返します。
format で指定した文字列が見つからない場合は空の配列を
生成して返します。
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
ブロックを指定した場合は scanf を継続して実行し、順次
見つかった文字列を変換したオブジェクトの配列を引数に、ブロックを
実行します。このとき、ブロックの実行結果を要素とする配列を返します。
requir... -
String
# scanf(format) {|*ary| . . . } -> Array (97369.0) -
ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。
ブロックを指定しない場合、見つかった文字列を format に従って変
換し、そのオブジェクトの配列を返します。
format で指定した文字列が見つからない場合は空の配列を
生成して返します。
require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]
ブロックを指定した場合は scanf を継続して実行し、順次
見つかった文字列を変換したオブジェクトの配列を引数に、ブロックを
実行します。このとき、ブロックの実行結果を要素とする配列を返します。
requir... -
Kernel
# scanf(format) -> Array (97009.0) -
STDIN.scanf と同じです。 IO#scanf、Stdin#scanfも参照してください。
STDIN.scanf と同じです。
IO#scanf、Stdin#scanfも参照してください。
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。
@see IO#scanf, Stdin#scanf -
Kernel
# scanf(format) {|*ary| . . . } -> Array (97009.0) -
STDIN.scanf と同じです。 IO#scanf、Stdin#scanfも参照してください。
STDIN.scanf と同じです。
IO#scanf、Stdin#scanfも参照してください。
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。
@see IO#scanf, Stdin#scanf -
IO
# scanf(format) -> Array (96745.0) -
String#scanfも参照してください。
String#scanfも参照してください。
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。 -
IO
# scanf(format) {|*ary| . . . } -> Array (96745.0) -
String#scanfも参照してください。
String#scanfも参照してください。
@param format スキャンするフォーマットを文字列で指定します。
詳細は、m:String#scanf#format を参照してください。 -
Scanf
:: FormatSpecifier (42001.0) -
-
Scanf
:: FormatSpecifier # conversion (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # count _ space? (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # letter (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # match(str) (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # matched (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # matched _ string (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # mid _ match? (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # re _ string (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # to _ re (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # to _ s (42001.0) -
@todo
@todo -
Scanf
:: FormatSpecifier # width (42001.0) -
@todo
@todo -
Scanf
:: FormatString (42001.0) -
-
Scanf
:: FormatString # last _ match _ tried (42001.0) -
@todo
@todo -
Scanf
:: FormatString # last _ spec (42001.0) -
@todo
@todo -
Scanf
:: FormatString # last _ spec _ tried (42001.0) -
@todo
@todo -
Scanf
:: FormatString # match(str) (42001.0) -
@todo
@todo -
Scanf
:: FormatString # matched _ count (42001.0) -
@todo
@todo -
Scanf
:: FormatString # prune(n=matched _ count) (42001.0) -
@todo
@todo -
Scanf
:: FormatString # space (42001.0) -
@todo
@todo -
Scanf
:: FormatString # spec _ count (42001.0) -
@todo
@todo -
Scanf
:: FormatString # string _ left (42001.0) -
@todo
@todo -
Scanf
:: FormatString # to _ s (42001.0) -
@todo
@todo -
Scanf
:: FormatString . new(str) (42001.0) -
@todo
@todo -
Scanf
:: FormatString :: REGEX (42001.0) -
@todo
@todo -
Scanf
:: FormatString :: SPECIFIERS (42001.0) -
@todo
@todo