gpt4 book ai didi

c# - c# 中的字符串自动引号 - 内置方法?

转载 作者:IT王子 更新时间:2023-10-29 04:40:32 26 4
gpt4 key购买 nike

是否有一些内置方法可以在 c# 中为字符串添加引号?

最佳答案

您的意思是只是添加引号吗?像这样?

text = "\"" + text + "\"";

?我不知道有什么内置方法可以做到这一点,但如果您愿意,可以很容易地编写一个方法:

public static string SurroundWithDoubleQuotes(this string text)
{
return SurroundWith(text, "\"");
}

public static string SurroundWith(this string text, string ends)
{
return ends + text + ends;
}

这样就更通用了:

text = text.SurroundWithDoubleQuotes();

text = text.SurroundWith("'"); // For single quotes

我不能说我需要足够频繁地执行此操作以使其值得拥有一种方法...

关于c# - c# 中的字符串自动引号 - 内置方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5745986/

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