gpt4 book ai didi

c# - 使用LINQ从逗号分隔的数组中获得独特的值(value)

转载 作者:太空宇宙 更新时间:2023-11-03 17:57:48 25 4
gpt4 key购买 nike

假设我有一个像这样的字符串数组

{
“一种”,
“ B”,
“ A,B,D”,
“C”
}


我是否可以编写一个LinQ来将不同的值{“ A”,“ B”,“ C”,“ D”}放入列表中?

最佳答案

lists.SelectMany(l => l.Split(',')).Distinct().ToList();

关于c# - 使用LINQ从逗号分隔的数组中获得独特的值(value),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6838870/

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