Hi,
I would like to create a regular expression to match every word, whitespace, punctuation and special characters in a string except for specific keywords or phrases. Because I only can modify regex, not server code I have to use match instead of replace.
I have something like this so far: (?!(quick|brown|fox|the lazy))\b\w+
but it ignores white spaces and special characters in this tool
Thanks.