current + ", -6ren">
gpt4 book ai didi

c# - Linq - 用引号聚合字符串

转载 作者:太空宇宙 更新时间:2023-11-03 20:11:23 24 4
gpt4 key购买 nike

我有以下问题:当我使用

 var newItems = {"one", "two"}
var a = newItems.Aggregate((current, c) => current + ", \"" + c + "\"");

我得到:“一,二”

而不是预期的:“\”一个\”,“两个\””

谁能给我解释一下为什么会这样?

最佳答案

你应该这样做

string output=String.Join(",",newItems.Select(x=>"\""+x+"\""));

替代方案

StringBuilder sb=new StringBuilder();
newItems.ToList()
.ForEach(x=>sb.Append(","+String.Format("\"{0}\"",x)));
string output=sb.ToString().Trim(',');

关于c# - Linq - 用引号聚合字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19830644/

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