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|b开发者_如何学JAVArown|fox|the lazy))\b\w+
but it ignores white spaces and special characters in this tool
Thanks.
Does this work for you (?!(quick|brown|fox|the lazy))(\b\w+|[^\w])
?
Do you have any examples?
精彩评论