るりまサーチ

最速Rubyリファレンスマニュアル検索!
276件ヒット [101-200件を表示] (0.059秒)

別のキーワード

  1. mkmf egrep_cpp
  2. mkmf try_cpp
  3. kernel try_cpp
  4. kernel egrep_cpp
  5. mkmf cpp_command

検索結果

<< < 1 2 3 > >>

Kernel$$POSTMATCH -> String | nil (27109.0)

$' の別名

...$' の別名

require "English"

str = 'hoge,foo,bar,hee,hoo'

/foo/ =~ str
p
$POSTMATCH #=> ",bar,hee,hoo"...

Kernel$$PREMATCH -> String | nil (27109.0)

$` の別名

...$` の別名

require "English"

str = 'hoge,foo,bar,hee,hoo'

/foo/ =~ str
p
$PREMATCH #=> "hoge,"...

Kernel$$PROCESS_ID -> Integer (27109.0)

$$ の別名

...$$ の別名

require "English"

p
sprintf("something%s", $PID) #=> "something5543" など...

Kernel$$OUTPUT_FIELD_SEPARATOR -> String | nil (24115.0)

$, の別名

...$, の別名

require "English"

array
= %w|hoge fuga ugo bar foo|
p
array.join #=> "hogefugaugobarfoo"
$OUTPUT_FIELD_SEPARATOR = ","
p
array.join #=> "hoge,fuga,ugo,bar,foo"...

Kernel$$OUTPUT_RECORD_SEPARATOR -> String | nil (24103.0)

$\ の別名

...$\ の別名

require "English"

p
rint "hoge\nhuga\n"
$OUTPUT_RECORD_SEPARATOR = "\n"
p
rint "fuge"
p
rint "ugo"
# end of sample.rb

ruby sample.rb
hoge
huga
fuge
ugo...

絞り込み条件を変える

Kernel$$FS -> String | nil (24015.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$$NR -> Integer (24009.0)

$. の別名

...$. の別名

1 e
2 f
3 g
4 h
5 i
# end of a.txt

require "English"

File.foreach(ARGV.at(0)){|line|
# read line
}
p
$INPUT_LINE_NUMBER
# end of sample.rb

ruby sample.rb a.txt
#=> 5...

Kernel$$RS -> String | nil (24009.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$$ERROR_INFO -> Exception | nil (21115.0)

$! の別名

...$! の別名

require "English"
class SomethingError < StandardError; end

begin
raise SomethingError
rescue
p
$ERROR_INFO.backtrace #=> ["sample.rb:5"]
p
$ERROR_INFO.to_s #=> "SomethingError"
end...
<< < 1 2 3 > >>