gpt4 book ai didi

c# - 我如何在 C# 中替换 "with\"

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

输入字符串是“你好吗”预期输出“你好吗”

由于 DoubleQuote 和转义序列的组合,我无法以所需格式替换字符串。

请有人可以向我提供执行此操作的代码片段。

我试过下面不行

myString.Replace(""","\"");

最佳答案

是的,这看起来有点奇怪,你需要同时转义:

string test = "\"How are you\"";
test = test.Replace("\"", "\\\"");

关于c# - 我如何在 C# 中替换 "with\",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21266610/

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