FindAll 搜索问题

发布于 2024-09-24 06:54:30 字数 250 浏览 3 评论 0原文

我有一个这样的列表:

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 技术交流群。

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

发布评论

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

评论(6

稀香 2024-10-01 06:54:30

如果“开始于”指的是第一个字符,那么:

item.FindAll(i => i[0] == 'a');

如果您指的是一个字符串(可能不是 1 个字符)那么:

item.FindAll(i => i.StartsWith("a"));

如果您想要不同的比较,例如不区分大小写、基于区域设置等,则执行以下操作相关的 IndexOf 例如:

item.FindAll(i => i.IndexOf("a", StringComparison.CurrentCultureIgnoreCase) == 0);

以上所有内容都可以轻松修改以使用相关的字符或字符串变量或参数。

如果您不需要列表提供的额外属性和方法,那么使用 Where 会比 FindAll 更有效,因为 FindAll创建一个新列表,并一次性执行此操作,而 Where 将在迭代时枚举匹配结果。

If by "start with" you mean the first char, then:

item.FindAll(i => i[0] == 'a');

if you mean a string (may be other than 1 char) then:

item.FindAll(i => i.StartsWith("a"));

If you want a different comparison, such as case-insensitive, locale-based, etc. then do the relevant IndexOf such as:

item.FindAll(i => i.IndexOf("a", StringComparison.CurrentCultureIgnoreCase) == 0);

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 than FindAll as FindAll creates a new list, and does so in all at once, while Where will enumerate the matching results as it is iterated through.

梦年海沫深 2024-10-01 06:54:30

或者使用 LINQ

from i in items where i.StartsWith("a") select i;

Or with LINQ

from i in items where i.StartsWith("a") select i;
且行且努力 2024-10-01 06:54:30

对于NET2.0你可以使用这个方法:
'pattern' 是要查找的参数 (fe "a")

    private List<string> FindAll(List<string> list, string pattern)
    {       // returns found results
            return list.FindAll(delegate(string item)
                            {
                                return item.StartsWith(pattern);

                            });
    }

for NET2.0 you may use this method:
'pattern' is an argument to look for (f.e. "a")

    private List<string> FindAll(List<string> list, string pattern)
    {       // returns found results
            return list.FindAll(delegate(string item)
                            {
                                return item.StartsWith(pattern);

                            });
    }
凉城已无爱 2024-10-01 06:54:30

我以为您有另一个包含startswith条件字符串的列表。让我们将您的项目称为“单词”,将其他列表称为“关键字”。所以下面的查询将返回你想要的内容。

List<string> words = new List<string>();
words.Add("a");
words.Add("as");
words.Add("b");
words.Add("fgs");
words.Add("adsd");

List<string> keywords = new List<string>();
keywords.Add("a");
keywords.Add("b");

var result = words.FindAll(o =>
    keywords.Any(a => o.StartsWith(a))
);

此结果包含以关键字中的任何关键字开头的单词。

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.

List<string> words = new List<string>();
words.Add("a");
words.Add("as");
words.Add("b");
words.Add("fgs");
words.Add("adsd");

List<string> keywords = new List<string>();
keywords.Add("a");
keywords.Add("b");

var result = words.FindAll(o =>
    keywords.Any(a => o.StartsWith(a))
);

This result has the words that starts with any of the keyword from keywords.

白日梦 2024-10-01 06:54:30
List<string> item = new List<string>();
            item.Add("a");
            item.Add("as");
            item.Add("b");
            item.Add("fgs");
            item.Add("adsd");

            var res1 = item.FindAll(i => i.StartsWith("a"));
            var res2 = item.Where(i => i.StartsWith("a"));
List<string> item = new List<string>();
            item.Add("a");
            item.Add("as");
            item.Add("b");
            item.Add("fgs");
            item.Add("adsd");

            var res1 = item.FindAll(i => i.StartsWith("a"));
            var res2 = item.Where(i => i.StartsWith("a"));
看轻我的陪伴 2024-10-01 06:54:30

试试这个

item.FindAll(i => i.Contains("a"));

这将返回一个仅包含过滤后的字符串的列表。

Try this

item.FindAll(i => i.Contains("a"));

This will return a List containting only the filtered strings.

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