るりまサーチ

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

別のキーワード

  1. kernel $ldflags
  2. kernel $kcode
  3. kernel $match
  4. kernel $debug
  5. kernel $ignorecase

ライブラリ

検索結果

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