るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.034秒)
トップページ > モジュール:Kernel[x] > ライブラリ:English[x] > クエリ:kernel[x] > クエリ:$field_separator[x]

別のキーワード

  1. kernel $output_field_separator
  2. english $field_separator
  3. kernel $child_status
  4. kernel $input_record_separator

キーワード

検索結果

Kernel$$FIELD_SEPARATOR -> String | nil (15110.0)

$; の別名

...$; の別名

require "English"

str = "hoge,fuga,ugo,bar,foo"
p str.split #=> ["hoge,fuga,ugo,bar,foo"]
$FIELD_SEPARATOR
= ","
p str.split #=> ["hoge", "fuga", "ugo", "bar", "foo"]...

Kernel$$FS -> String | nil (12010.0)

$; の別名

...$; の別名

require "English"

str = "hoge,fuga,ugo,bar,foo"
p str.split #=> ["hoge,fuga,ugo,bar,foo"]
$FIELD_SEPARATOR
= ","
p str.split #=> ["hoge", "fuga", "ugo", "bar", "foo"]...