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

Based on this answer

http://stackoverflow.com/questions/469913/regular-expressions-is-there-an-and-operator

I tried the following on http://regexpal.com/ but was unable to get it to work. What am missing? Does javascript not support it?

Regex: (?=foo)(?=baz)

String: foo,bar,baz

share|improve this question

1 Answer

up vote 8 down vote accepted

It is impossible for both (?=foo) and (?=baz) to match at the same time. It would require the next character to be both f and b simultaneously which is impossible.

Perhaps you want this instead:

(?=.*foo)(?=.*baz)

This says that foo must appear anywhere and bar must appear anywhere, not necessarily in that order and possibly overlapping (although overlapping is not possible in this specific case).

share|improve this answer
I just tried it on regexpal.com. No cigar. Maybe this is a bug with regexpal? – user366735 Jun 15 '10 at 16:06
Sorry. Nevermind, that made sense. Thank you. – user366735 Jun 15 '10 at 16:12
Did you get this to work on regexpal? I could not. – ghee22 Jan 7 at 20:01
1  
@ghee22: The regular expression works fine but using regexpal probably isn't the best way to test it because there is no visible feedback of whether the match succeeds or fails (it is a zero-width match). Try running it in a Javascript console instead or add .* to the end of the expression. – Mark Byers Jan 8 at 9: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.