gpt4 book ai didi

c# - c# asp.net 如何在字符串前后添加单引号?

转载 作者:行者123 更新时间:2023-11-30 14:22:28 25 4
gpt4 key购买 nike

这是我的代码,我想要前后单引号。

char[] charsToTrim = { '\\' };
selectedITeration += (lis.Text.Trim(charsToTrim) + ",").Replace(@"\", @"\\");

输出:

    \MRI_SCRUM_GIT\\Iteration\\AS-Automation,
\MRI_SCRUM_GIT\\Iteration\\Pluse Pheonix,
\MRI_SCRUM_GIT\\Iteration\\Pluse Pheonix\Sprint 1,
\MRI_SCRUM_GIT\\Iteration\\Pluse Pheonix\Sprint 10

我想要这样的东西:

'MRI_SCRUM_GIT\\AS-Automation',
'MRI_SCRUM_GIT\\Pluse Pheonix',
'MRI_SCRUM_GIT\\Pluse Pheonix\\Sprint 1',
'MRI_SCRUM_GIT\\Pluse Pheonix\\Sprint 10'

最佳答案

试试这个

selectedITeration +=
String.Format("'{0}'", (lis.Text.Trim(charsToTrim) + ",").Replace(@"\", @"\\"));

或 C# 6.0 ( string inerpolation )

selectedITeration += $"'{(lis.Text.Trim(charsToTrim) + ",").Replace(@"\", @"\\")}'";

仅供引用:Does C# 6.0 work for .NET 4.0?

关于c# - c# asp.net 如何在字符串前后添加单引号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49606764/

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