RegEx - Exclude Matched Patterns
I have the below patterns to be excluded. make it cheaper make it cheapere makeitcheaper.com.au makeitcheaper making it cheaper www.make it cheaper ww.make it cheaper.com I've created a regex to match any of these. However, I want to get everything else other than these. I am not sure how to inverse this regex I've created. mak(e|ing) ?it ?cheaper Above pattern matches all the strings listed. Now I want it to match everything else. How do I do it? From the search, it seems I need something like negative lookahead / look back. But, I don't really get it. Can some one point me in the right