Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像这样的 JSON
"{\"jquery\": [[0, 1, \"call\", [\"body\"]] etc
这显然是错误的,我想将 \" 部分替换为 " 以使格式正确。
我已经尝试了很多东西.. "\\""、"\""、System.Environment.Newline,我无法在 String.Replace 中使用任何东西..
我觉得你很困惑。。
如果您有这样的字符串,请在 C# 项目中的某处定义:
String str = "Foo is \"bar is\" Baz!";
当您查看它时,它将在调试器中以相同的方式显示。转义字符\是说,不要在这里结束我的字符串,这"是字符串的一部分。
\
"
如果您输入以下行,
Console.Write(str);
你应该看到这个输出。
Foo is "bar is" Baz!