/ Published in: Regular Expression
Finds a string that doesn't contain another string. For example, find the text FOO* that isn't FOOBAR.
Expand |
Embed | Plain Text
^FOO(?:(?!BAR).)*$
You need to login to post a comment.
Finds a string that doesn't contain another string. For example, find the text FOO* that isn't FOOBAR.
^FOO(?:(?!BAR).)*$
You need to login to post a comment.