c# – 从列表不区分大小写中获取重复项
作者:互联网
List<string> testList = new List<string>();
testList.Add("A");
testList.Add("A");
testList.Add("C");
testList.Add("d");
testList.Add("D");
此查询区分大小写:
// Result: "A"
List<String> duplicates = testList.GroupBy(x => x)
.Where(g => g.Count() > 1)
.Select(g => g.Key)
.ToList();
它如何看起来不区分大小写? (结果:“A”,“d”)
解决方法:
通过使用GroupBy的重载实现,您可以在其中提供所需的比较器,例如: StringComparer.OrdinalIgnoreCase:
var result = testList
.GroupBy(item => item, StringComparer.OrdinalIgnoreCase)
.Where(g => g.Count() > 1)
.Select(g => g.Key)
.ToList();
标签:c,linq,string-comparison 来源: https://codeday.me/bug/20190713/1453225.html