我需要将字符串的值替换为我在 Ruby 中的正则表达式。是否有捷径可寻?例如:
foo = "0.0.0.0" goo = "here is some other stuff 0.0.0.0" if goo =~ /value of foo here dynamically/ puts "success!" end
与字符串插入相同。
if goo =~ /#{Regexp.quote(foo)}/ #...