36件ヒット
[1-36件を表示]
(0.010秒)
別のキーワード
モジュール
- Kernel (36)
キーワード
-
$ ERROR _ POSITION (12) -
$ POSTMATCH (12) -
$ stdin (12)
検索結果
先頭3件
-
Kernel
$ $ ERROR _ POSITION -> [String] | nil (6101.0) -
$@ の別名
...$@ の別名
require "English"
class SomethingError < StandardError; end
begin
raise SomethingError
rescue
p $ERROR_POSITION #=> ["sample.rb:5"]
end... -
Kernel
$ $ POSTMATCH -> String | nil (6101.0) -
$' の別名
...$' の別名
require "English"
str = 'hoge,foo,bar,hee,hoo'
/foo/ =~ str
p $POSTMATCH #=> ",bar,hee,hoo"... -
Kernel
$ $ stdin -> object (7.0) -
標準入力です。
...トが以下のメソッドを
正しく実装していなければいけません。
gets, readline, readlines, getc, readchar, tell, seek,
pos=, rewind, fileno, to_io, eof, each_line, each_byte,
binmode, closed?
//emlist[例][ruby]{
$stdin = Object.new
def $stdin.gets
"foo"
end
p g...