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.

I have this validation:

validates :url,     :uniqueness => true,
                    :format => { :with => /^(http:\/\/)?(www\.)?youtube\.com\/watch\?v=([a-zA-Z0-9_-]*)/}

I want to let url match either the regex above or another regex. How do I add this second regex?

share|improve this question

1 Answer

up vote 6 down vote accepted

You put both regexes into one regex using the 'bar' operator which does an 'or' for you:

/(^(http:\/\/)?(www\.)?youtube\.com\/watch\?v=([a-zA-Z0-9_-]*)|helloworld)/

Matches a URL or a string containing "helloworld"

share|improve this answer
is there a space before and after the bar operator? – Justin Meltzer Apr 28 '11 at 7:21
nope - that would force there to be spaces in the strings you are matching – stef Apr 28 '11 at 7:22

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.