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.

Say there are two words like: googleweb.us and google.us

This is one way I worked out to match these in a single regex, but it looks ugly.

/(google|espn|foxtel)\w*[web\.\w+|\.\w+]/

I only want to cover both of the two cases when "web" exists or not. How could the pattern could be improved?

share|improve this question
Your regex covers more than what your question asks about; what are you really after? – Jonathan Leffler Oct 23 '12 at 0:14

2 Answers

up vote 2 down vote accepted

This will allow "web" to be optional for just google:

/(google(web)?|espn|foxtel)\.\w+/

This will allow "web" to be optional for any of the domains:

/(google|espn|foxtel)(web)?\.\w+/
share|improve this answer
Ha, smart, match 0 or 1 time. Thanks. – Yang Oct 23 '12 at 0:24

You need to revise your 'character class'. The material in square brackets is treated as a character class, and isn't what you had in mind.

A regex that would match what you ask about in words ('googleweb.us' and 'google.us') is:

/^(google)(web)?\.us$/

When you've defined what else you want it to match, people can refine the regex.

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.