Tagged Questions
4
votes
3answers
999 views
How can I invert a regular expression in JavaScript?
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 ...