gpt4 book ai didi

linq列表字符串像

转载 作者:行者123 更新时间:2023-12-01 22:42:33 26 4
gpt4 key购买 nike

我有一个列表:

List(Of String)

我想用 LINQ 过滤它。

我使用这样的东西:

newList = (From l In myList Where l Like String.Format("%{0}%", value)).ToList

值类似于ano 等。

我想要类似 SQL 中的 LIKE 的东西:

like "%a%"

所以我将生成一个字符串列表,其中每个字符串中都有一个 a

我应该怎么做?

dim list1 as list(of string)
list1.Add("aaa")
list1.Add("bbb")
list1.Add("ccc")
list1.Add("abc")
list1 = from l in list1 where ???? 'like "a" return list1 with 2 item : "aaa" and "abc"

最佳答案

List a = new List();

a = a.Where(item => item.contains("a")).ToList();

关于linq列表字符串像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10036991/

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