るりまサーチ (Ruby 2.2.0)

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

別のキーワード

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

ライブラリ

モジュール

検索結果

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