るりまサーチ

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

別のキーワード

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

ライブラリ

検索結果

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