るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. cgi text_field
  2. cgi file_field
  3. cgi password_field
  4. csv field_size_limit
  5. cgi/html text_field

ライブラリ

検索結果

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