正则表达式匹配所有内容,但
我想创建一个正则表达式来匹配字符串中除特定关键字或短语之外的每个单词、空格、标点符号和特殊字符。因为我只能修改正则表达式,而不能修改服务器代码,所以我必须使用匹配而不是替换。
到目前为止我有这样的东西: (?!(quick|brown|fox|thelazy))\b\w+
但它忽略了 工具
谢谢。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对你有用吗<code>(?!(quick|brown|fox|thelazy))(\b\w+|[^\w])?
你有什么例子吗?
Does this work for you
(?!(quick|brown|fox|the lazy))(\b\w+|[^\w])
?Do you have any examples?