Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to substitute the value of a string into my regular expression in Ruby. Is there an easy way to do this? For example:

foo = "0.0.0.0"
goo = "here is some other stuff 0.0.0.0" 
if goo =~ /foo's value goes here/
  puts "success!"
end
share|improve this question
Are you trying to see if foo is a substring of goo? I don't think it's clear what you're asking. – Neall Sep 29 '08 at 18:52
If so, goo.include?(foo) is enough! – glenn mcdonald Sep 30 '08 at 2:13
No, I wasn't trying to see if foo is a substring of goo; I also needed to do some capturing as well, hence include didn't work. – Chris Bunch Sep 30 '08 at 7:11

6 Answers

up vote 65 down vote accepted

Same as string insertion.

if goo =~ /#{Regexp.quote(foo)}/
#...
share|improve this answer

Note that the Regexp.quote in Jon L.'s version is important!

if goo =~ /#{Regexp.quote(foo)}/

If you just do the "obvious" version:

if goo =~ /#{foo}/

then the periods in your match text are treated as regexp wildcards, and "0.0.0.0" will match "0x0y0z"...

Note also that if you really just want to check for a substring match, you can simply do

if goo.include?(foo)

which doesn't require an additional quoting or worrying about special characters...

share|improve this answer
Ah, great catch Glenn! Thanks! – Chris Bunch Sep 30 '08 at 7:12

probably Regexp.escape(foo) would be a starting point, but is there a good reason you can't use the more conventional expression-interpolation "my stuff #{mysubstitutionvariable}"?

Also, you can just use !goo.match(foo).nil? with a literal string.

share|improve this answer
Regexp.compile(Regexp.escape(foo))
share|improve this answer

Use Regexp.new:

if goo =~ Regexp.new(foo) # Evaluates to /0.0.0.0/
share|improve this answer
foo = "0.0.0.0"
goo = "here is some other stuff 0.0.0.0" 

puts "success!" if goo =~ /#{foo}/
share|improve this answer
No, this will give an erroneous "true" for "here is some other stuff 070x0!0", because the dots are regexp wildcards. – glenn mcdonald Sep 30 '08 at 2:12
good catch glenn. – Mike Breen Oct 4 '08 at 0:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.