るりまサーチ

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

別のキーワード

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

ライブラリ

モジュール

検索結果

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