るりまサーチ

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

別のキーワード

  1. kernel $postmatch
  2. kernel $stdin
  3. kernel $argv
  4. kernel $8
  5. kernel $filename

ライブラリ

検索結果

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

$' の別名

...
$
' の別名

require "English"

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

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