通过Linq在List中检查关键字

发布于 2024-12-10 18:52:23 字数 150 浏览 0 评论 0原文

我有一个列表,我需要通过它检查列表中的项目 (DescVal) 是否包含 和 *,如果是,则返回 false。我想我什至可以让它返回带有 * 的记录,然后进行计数,如果计数为 0,那么我知道它是 false,但如果它一开始就可以返回 false,那就太好了。

先感谢您。

I have a List through which I need to check if an item of the list (DescVal) contains and * and if so, return a false. I guess I can even have it return the records that have an * and then do a count and if the count is 0 then I know it was false but if it can return false to begin with, that would be great.

Thank you in advance.

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

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

发布评论

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

评论(1

年少掌心 2024-12-17 18:52:23

听起来像你想要的

if (list.Any(o => o.SomeString.Contains("*")))

It sounds like you want

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