Regex - how to tell something NOT to match?
- by Jake Petroules
How can I create a regex NOT to match something? For example I want to regex to match everything that is NOT the string "www.petroules.com".
I tried [^www\.petroules\.com] but that didn't seem to work.