Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串列表(大约 18000 个项目),我需要在这个列表中找到相同的子字符串。下面是一个示例: 列表示例:“test1”“test 2”“est 2”“west1”
好吧,我需要这个结果:
“测试” - 2
“EST” - 4
“est1” - 2
“EST 2” - 2
好吧,我需要它使用 linq 来快速搜索(如果可能的话)。提前致谢
我想这就是你想要的:
var listWithSubstring = originalList.Where(i => i.Contains("est"));