るりまサーチ (Ruby 2.2.0)

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

別のキーワード

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

ライブラリ

キーワード

検索結果

Kernel$$FIELD_SEPARATOR -> String | nil (45325.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 (36025.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"]