gpt4 book ai didi

c# - 我如何在数组列表中使用多个分隔符

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

我想问你下面的代码:

 string[] seledCats = new string[0];

string condsCats = EzCoding.Web.UI.QueryStringParsing.GetValue(
"CondsCats",
EzCoding.Web.RequestMethod.Post);

if (condsCats != null)
{
seledCats = condsCats.Split(new string[] { "," },
StringSplitOptions.RemoveEmptyEntries);
}

在数组列表中插入选中的数据后,输出为A1,A2,但我想像这样显示它 'A1','A2'

那么,我该怎么做呢?谢谢。

最佳答案

您可以使用这个小的 LINQ 查询:

string condsCats = EzCoding.Web.UI.QueryStringParsing.GetValue("CondsCats",EzCoding.Web.RequestMethod.Post);
string[] seledCats = null;
if(condsCats != null)
seledCats = condsCats
.Split(new string[] { "," }, StringSplitOptions.RemoveEmptyEntries)
.Select(s => String.Format("'{0}'", s))
.ToArray();

关于c# - 我如何在数组列表中使用多个分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36909213/

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