るりまサーチ

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

別のキーワード

  1. cgi img
  2. cgi/html img
  3. htmlextension img
  4. img cgi/html

ライブラリ

検索結果

Kernel$$LAST_PAREN_MATCH -> String | nil (13.0)

$+ の別名

...

require "English"

r1 = Regexp.compile("<img src=(http:.+?)>")
r2 = Regexp.compile("<a href=(http|ftp).+?>(.+?)</a>")

while line = DATA.gets
[ r1, r2 ].each {|rep|
rep =~ line
p $+
}
end
__END__
<tr> <td><img src=http://localhost/a.jpg></td> <td>ikkou</td> <td...