我有一个包含 16 个字符串的字符串列表。用户选择将此列表的索引为 0,5,6,10,15 的项目复制到第二个 List 。
linq 有没有办法做到这一点?
假设您已经在集合中拥有索引,您可以使用Enumerable.ElementAt
which 只使用索引器 for IList<T>
,因此它非常有效:
var indices = new List<int>(){ 0,5,6,10,15 };
List<String> result = indices.Select(i => strings.ElementAt(i)).ToList();
如果您不想创建新列表但将它们复制到现有列表中:
other.AddRange(indices.Select(i => strings.ElementAt(i)));
var list = new List<string> {"sdf", "sdfsd", "fdgfdgfhg"};
var result = list.Where(x => list.IndexOf(x) == 1 || list.IndexOf(x) == 2).ToList();
但我不建议这样做,这个任务 dot'n for linq
也可以使用 Where 扩展方法的以下重载:
var string_list = new List<string>() { "0", "1", "2", "3", "4", "5" };
var index_list = new List<int>() { 0, 2, 3 };
foreach (string result in string_list.Where((s, i) => index_list.Contains(i)))
Console.WriteLine(result);