How can I invert a regular expression in JavaScript?

后端 未结 4 1960
野趣味
野趣味 2020-11-27 03:46

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:



        
4条回答
  •  误落风尘
    2020-11-27 04:21

    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!

提交回复
热议问题