如何用双引号替换双引号字符串?

时间:2017-11-10 07:32:12

标签: c#

如何用双引号替换双引号字符串。

string.Replace(""InputEntity":null", ""InputEntity":xyz")

here string is "InputEntity":null to replace.

1 个答案:

答案 0 :(得分:0)

使用转义字符 \,它会更改后续字符的含义:

string.Replace("\"InputEntity\":null", "\"InputEntity\":xyz")

"的情况下,其含义从“this is the string of string”变为“this is a literal quote character”。转义字符本身只出现在源代码中;它不会成为结果字符串值的一部分。