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

标签 c# .net regex

我有一个长字符串。

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/

相关文章:

c# - .NET ObservableDictionary

c# - 在 Windows Phone 后台播放音频

c# - 使用 SSH.NET 从 SFTP 服务器下载一个特定文件

c# - 将对象列表转换为另一个列表

c# - 检查数组是否排序的最快方法

C# 精确显示标签 X 秒并隐藏它 Y 秒

c# - 如何让光标变成等待光标?

regex - 带有花括号内表达式的 Perl 正则表达式无法按预期工作

regex - 在 java 中使用解析编写类似于 http ://integrals. wolfram.com/index.jsp 的 INTEGRATOR

javascript - 从javascript中的字符串路径获取文件名?