るりまサーチ

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

別のキーワード

  1. kernel $load_path
  2. english $child_status
  3. kernel $error_info
  4. english $field_separator
  5. english $error_info

ライブラリ

検索結果

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