るりまサーチ

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

別のキーワード

  1. kernel $defs
  2. kernel $topdir
  3. kernel $verbose
  4. kernel $postmatch
  5. kernel $libs

ライブラリ

検索結果

Kernel$$RS -> String | nil (42216.0)

$/ の別名

...
$
/ の別名

require "English"

$
INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]

__END__
ugo|ego|fogo...

Kernel$$INPUT_RECORD_SEPARATOR -> String | nil (27116.0)

$/ の別名

...
$
/ の別名

require "English"

$
INPUT_RECORD_SEPARATOR = '|'
array = []
while line = DATA.gets
array << line
end
p array #=> ["ugo|", "ego|", "fogo\n"]

__END__
ugo|ego|fogo...