| Title |
Test
Find
Negative Look-Around
|
| Expression |
^((?!string).)*$ |
| Description |
This expression will NOT match any string that contains the word "string". You can replace "string" with any list of characters you would like to prevent matching on. |
| Matches |
strin, tring, 123tring, strin123 |
| Non-Matches |
string, 123string, string123, anythingwithstringinit |
| Author |
Rating:
Not yet rated.
Eric Bach
|
| Source |
|
| Your Rating |
|