gpt4 book ai didi

c# - 如何在 C# .net 中查找不包含特定使用正则表达式的字符串

转载 作者:行者123 更新时间:2023-11-30 17:44:39 24 4
gpt4 key购买 nike

我有一个长字符串。

Example
This is a dog.
This is a cat.
A cat and a cat is a pet animal.
A tiger is a wild animal.

现在我想要不包含“猫”但包含动物的字符串。我怎样才能使用正则表达式来做到这一点。我知道我必须使用(?!)但我不知道如何使用。所以输出将是

A tiger is a wild animal.

最佳答案

^(?!.*\bThis\b).*$

试试这个。查看演示。

https://regex101.com/r/tJ2mW5/16

为您编辑的问题使用

^(?=.*\banimal\b)(?!.*\bcat\b).*$

查看演示。

https://regex101.com/r/tJ2mW5/18

关于c# - 如何在 C# .net 中查找不包含特定使用正则表达式的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29230011/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com