最速Rubyリファレンスマニュアル検索!
すべて(11)
2.1.0(1)
2.2.0(1)
2.3.0(1)
2.4.0(1)
2.5.0(1)
2.6.0(1)
2.7.0(1)
3.0(1)
3.1(1)
3.2(1)
3.3(1)
11件ヒット
[1-11件を表示]
(0.084秒)
トップページ
>
:
変数
>
:$match
別のキーワード
kernel $match
english $match
kernel $3
kernel $4
kernel $5
ライブラリ
English
(11)
モジュール
Kernel
(11)
検索結果
先頭1件
Kernel
$
$
MATCH -> String | nil
Kernel
$
$
MATCH -> String | nil
(6108.0)
2.1.0
2.2.0
2.3.0
2.4.0
2.5.0
2.6.0
2.7.0
3.0
3.1
3.2
3.3
変数
$& の別名
...
$& の別名
require "English"
str = 'hoge,foo,bar,hee,hoo'
/(foo|bar)/ =~ str
p
$MATCH
#=> "foo"
...
Kernel