るりまサーチ

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

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix rank_e
  4. matrix det_e
  5. matrix determinant_e

ライブラリ

モジュール

検索結果

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