正则表达式匹配所有内容,但

发布于 2024-09-24 06:31:35 字数 254 浏览 6 评论 0原文

我想创建一个正则表达式来匹配字符串中除特定关键字或短语之外的每个单词、空格、标点符号和特殊字符。因为我只能修改正则表达式,而不能修改服务器代码,所以我必须使用匹配而不是替换。

到目前为止我有这样的东西: (?!(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小女人ら 2024-10-01 06:31:35

这对你有用吗<​​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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文