FindAll 搜索问题
我有一个这样的列表:
item.Add("a");
item.Add("as");
item.Add("b");
item.Add("fgs");
item.Add("adsd");
如何找到以(例如)“a”开头的所有项目?
这个“a”不是一些硬编码的字符串,所以我需要一个函数来为每个字符串执行此操作。
我尝试使用 FindAll,但我不知道它是如何工作的。
兄弟,狼
I have a list like this:
item.Add("a");
item.Add("as");
item.Add("b");
item.Add("fgs");
item.Add("adsd");
How can I find all items that start with (for example) "a"?
This "a" is not some hardcoded string, so I will need a function that do this for each string.
I try with FindAll, but I did not figured out how it works.
Br, Wolfy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果“开始于”指的是第一个字符,那么:
如果您指的是一个字符串(可能不是 1 个字符)那么:
如果您想要不同的比较,例如不区分大小写、基于区域设置等,则执行以下操作相关的 IndexOf 例如:
以上所有内容都可以轻松修改以使用相关的字符或字符串变量或参数。
如果您不需要列表提供的额外属性和方法,那么使用
Where
会比FindAll
更有效,因为FindAll
创建一个新列表,并一次性执行此操作,而Where
将在迭代时枚举匹配结果。If by "start with" you mean the first char, then:
if you mean a string (may be other than 1 char) then:
If you want a different comparison, such as case-insensitive, locale-based, etc. then do the relevant IndexOf such as:
All of the above can be easily adapted to be use a relevant char or string variable or parameter.
If you don't need the extra properties and methods provided by a list, then it will be more efficient to use
Where
thanFindAll
asFindAll
creates a new list, and does so in all at once, whileWhere
will enumerate the matching results as it is iterated through.或者使用 LINQ
Or with LINQ
对于NET2.0你可以使用这个方法:
'pattern' 是要查找的参数 (fe "a")
for NET2.0 you may use this method:
'pattern' is an argument to look for (f.e. "a")
我以为您有另一个包含startswith条件字符串的列表。让我们将您的项目称为“单词”,将其他列表称为“关键字”。所以下面的查询将返回你想要的内容。
此结果包含以关键字中的任何关键字开头的单词。
I thought you have another list that contains the startswith criteria strings. Lets call your items "words" and the other list "keywords". So the below query will return what you want.
This result has the words that starts with any of the keyword from keywords.
试试这个
这将返回一个仅包含过滤后的字符串的列表。
Try this
This will return a List containting only the filtered strings.