12件ヒット
[1-12件を表示]
(0.070秒)
検索結果
-
Regexp
# ~ -> Integer | nil (9013.0) -
変数 $_ の値との間でのマッチをとります。
..."
if /foo/
puts "match"
else
puts "no match"
end
# => no match
# ただし、警告がでる。warning: regex literal in condition
reg = Regexp.compile("foo")
if ~ reg
puts "match"
else
puts "no match"
end
# => no match
if reg
puts "match"
else
puts "no match"
end
# => match
# re...