gpt4 book ai didi

c# - 如何使用 LINQ 从字符串中选择标记?

转载 作者:行者123 更新时间:2023-11-30 13:53:07 26 4
gpt4 key购买 nike

我想从字符串中选择一个标记,如果它存在于字符串中,我得到了以下信息,但我不确定为什么它不能编译:

IList<string> tokens = _animals.Split(';');

Func<string, bool> f1 = str => str.Contains("Dog");
Func<string, Func<string, bool>, string> f2 = str => Equals(f1, true);

var selected = tokens.Select(f2);

最佳答案

我想你只是想要这个。

var selected = tokens.Where(str => str.Contains("Dog"));

关于c# - 如何使用 LINQ 从字符串中选择标记?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/849001/

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