指定正则表达式的一部分不应包含另一个正则表达式

发布于 2024-12-27 18:55:07 字数 186 浏览 1 评论 0原文

有没有办法指定正则表达式不应包含另一个正则表达式的匹配项?

哪个正则表达式(此处以 Javascript 样式语法给出)对应于正则表达式 /(artwork|sheep|cattle|book|literature)(s)/i,但不包含 /(羊|牛|艺术品|文学)(s)/?

Is there a way to specify that a regular expression should not contain a match of another regular expression?

Which regular expression (given here in Javascript-style syntax) would correspond to the regular expression /(artwork|sheep|cattle|book|literature)(s)/i, but not containing matches of /(sheep|cattle|artwork|literature)(s)/?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

烧了回忆取暖 2025-01-03 18:55:07

如果 /books/ 不是答案,那么也许可以尝试使用负面展望..就像这样

=> /(?!(?:sheep|cattle|artwork|literature)(?:s))(artwork|sheep|cattle|book|literature)(s)/
>> re =~ 'books'
=> 0
>> re =~ 'bookxs'
=> nil
>> re =~ 'sheep'
=> nil
>> re =~ 'cattle'
=> nil
>> re =~ 'test'
=> nil

if /books/ is not the answer then perhaps try with negative look ahead.. like this

=> /(?!(?:sheep|cattle|artwork|literature)(?:s))(artwork|sheep|cattle|book|literature)(s)/
>> re =~ 'books'
=> 0
>> re =~ 'bookxs'
=> nil
>> re =~ 'sheep'
=> nil
>> re =~ 'cattle'
=> nil
>> re =~ 'test'
=> nil
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文