るりまサーチ

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

別のキーワード

  1. kernel $fs
  2. kernel $stdin
  3. kernel $7
  4. kernel $8
  5. kernel $defs

ライブラリ

検索結果

Kernel$$MATCH -> String | nil (24316.0)

$& の別名

...
$
& の別名

require "English"

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

/(foo|bar)/ =~ str
p $MATCH #=> "foo"...