I have a string A and want to test if another string B is not part of it. This is a very simple regex whose result can be inverted afterwards.

I could do:

/foobar/.test('foobar@bar.de')

and invert it afterwards, like this:

!(/foobar/).test('foobar@bar.de')

The problem I have is, that I need to do it within the regular expression and not with their result. Something like:

/!foobar/.test('foobar@bar.de')

(which does not work)

In other words: the regular expression should test for a non-existence and return true in that case.

Is this possible with JavaScript?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

Try:

/^(?!.*foobar)/.test('foobar@bar.de')

A (short) explanation:

^          # start of the string 
(?!        # start negative look-ahead
  .*       # zero or more characters of any kind (except line terminators)
  foobar   # foobar
)          # end negative look-ahead

So, in plain English, that regex will look from the start of the string if the string 'foobar' can be "seen". If it can be "seen" there is no* match.

* no match because it's negative look-ahead!

More about this look-ahead stuff: http://www.regular-expressions.info/lookaround.html But Note that JavaScript only supports look-aheads, no look-behinds!

link|improve this answer
Nice - could you explain that? – Ghommey Oct 8 '09 at 15:28
@Ghommey: I was already working on an explanation. ;) – Bart Kiers Oct 8 '09 at 15:30
Thx I have never seen ?! before. Great answer – Ghommey Oct 8 '09 at 15:35
Great, this was exactly what I needed. Haven't tried the negative lookahead in JavaScript before. Thanks a lot! – acme Oct 9 '09 at 8:36
+1 I was looking for a regex post of yours to upvote - It seems this is the appropriate one as it deals with look around. Thanks again. – Amarghosh Nov 5 '09 at 9:32
feedback

If what you're searching for really isn't more complicated than a simple string like "foobar":

if (yourString.indexOf("foobar") = -1) {
  // ...
}

http://www.w3schools.com/jsref/jsref_indexOf.asp

link|improve this answer
Thanks, but it needs to be a regular expression, I just simplified the example a little bit. – acme Oct 9 '09 at 8:31
feedback

why don't you change your code instead?

link|improve this answer
It's part of a validation class and I don't want to rewrite it (if not necessary). – acme Oct 9 '09 at 8:30
you're still rewriting it by changing the regex – SilentGhost Oct 9 '09 at 8:47
I'm not rewriting my function, I'm modifying the regular expression, which is the function argument. The function remains untouched, what is what I wanted to achieve: function testRegex(regex, subject) { return regex.test(subject); } – acme Oct 9 '09 at 10:56
feedback

Your Answer

 
or
required, but never shown

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