るりまサーチ

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

別のキーワード

  1. kernel $field_separator
  2. kernel $error_position
  3. kernel $child_status
  4. kernel $load_path
  5. kernel $last_read_line

ライブラリ

検索結果

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