Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
if (banners = /Ability Server 2\\.34g/)

I am just getting confused of this regex expression in Ruby. What does this regex expression talking of? what does g/ mean?

I am thinking I am somehow mistaken about regex expression in Ruby, because I am not supposed to be confused of this simple issue.

share|improve this question

1 Answer

up vote 1 down vote accepted

If you are using regex to test string, you need to use =~ instead of =.

if (banners =~ /Ability Server 2\.34g/)

And the g in your regex is just a g, you are testing if a string contains the string 'Ability Server 2.34g'

share|improve this answer

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.