るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
21件ヒット [1-21件を表示] (0.014秒)
トップページ > バージョン:2.2.0[x] > クエリ:format[x] > クエリ:spec[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. benchmark format
  2. logger datetime_format
  3. logger datetime_format=
  4. tms format
  5. ipaddr in6format

検索結果

Gem::Format#spec -> Gem::Specification (63607.0)

Gem の Gem::Specification を返します。

Gem の Gem::Specification を返します。

Gem::OldFormat#spec -> Gem::Specification (63607.0)

Gem の Gem::Specification を返します。

Gem の Gem::Specification を返します。

Gem::Format#spec=(spec) (27628.0)

Gem の Gem::Specification をセットします。

Gem の Gem::Specification をセットします。

@param spec Gem の Gem::Specification をセットします。

Gem::OldFormat#spec=(spec) (27628.0)

Gem の Gem::Specification をセットします。

Gem の Gem::Specification をセットします。

@param spec Gem の Gem::Specification をセットします。

Scanf::FormatString#last_spec (27307.0)

@todo

@todo

絞り込み条件を変える

Scanf::FormatString#last_spec_tried (27307.0)

@todo

@todo

Scanf::FormatString#spec_count (27307.0)

@todo

@todo

Scanf::FormatSpecifier#conversion (18004.0)

@todo

@todo

Scanf::FormatSpecifier#count_space? (18004.0)

@todo

@todo

Scanf::FormatSpecifier#letter (18004.0)

@todo

@todo

絞り込み条件を変える

Scanf::FormatSpecifier#match(str) (18004.0)

@todo

@todo

Scanf::FormatSpecifier#matched (18004.0)

@todo

@todo

Scanf::FormatSpecifier#matched_string (18004.0)

@todo

@todo

Scanf::FormatSpecifier#mid_match? (18004.0)

@todo

@todo

Scanf::FormatSpecifier#re_string (18004.0)

@todo

@todo

絞り込み条件を変える

Scanf::FormatSpecifier#to_re (18004.0)

@todo

@todo

Scanf::FormatSpecifier#to_s (18004.0)

@todo

@todo

Scanf::FormatSpecifier#width (18004.0)

@todo

@todo

Gem::Specification#requirements=(informations) (9304.0)

この Gem パッケージを動作させるのに必要な条件をセットします。 これはユーザのためのシンプルな情報をセットします。

この Gem パッケージを動作させるのに必要な条件をセットします。
これはユーザのためのシンプルな情報をセットします。

@param informations 情報を文字列の配列で指定します。

String#scanf(format) -> Array (496.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 (496.0)

ブロックを指定しない場合、見つかった文字列を format に従って変 換し、そのオブジェクトの配列を返します。 format で指定した文字列が見つからない場合は空の配列を 生成して返します。

ブロックを指定しない場合、見つかった文字列を format に従って変
換し、そのオブジェクトの配列を返します。
format で指定した文字列が見つからない場合は空の配列を
生成して返します。

require 'scanf'
str = "123 abc 456 def 789 ghi"
p str.scanf("%d%s") #=> [123, "abc"]

ブロックを指定した場合は scanf を継続して実行し、順次
見つかった文字列を変換したオブジェクトの配列を引数に、ブロックを
実行します。このとき、ブロックの実行結果を要素とする配列を返します。

requir...