从字符串 C# 中删除反斜杠

本文关键字:删除 字符串 | 更新日期: 2023-09-27 18:34:41

我有一些xml所在的字符串。

字符串为:

string xmlRead = "<ns0:RequestedAmount xmlns:ns0='"http://tempuri.org/XMLSchema.xsd'">  <ns0:RequestedAmount></ns0:RequestedAmount>  </ns0:RequestedAmount>" +
                         "<ns0:Response xmlns:ns0='"http://tempuri.org/XMLSchema.xsd'">  <ns0:Response/> </ns0:Response>" +
                         "<ns0:isValid xmlns:ns0='"http://tempuri.org/XMLSchema.xsd'">  <ns0:isValid/> </ns0:isValid>";

我试过这个:

string s=xmlRead.Replace(@"'","");
string s=xmlRead.Replace("'"","");
string s=xmlRead.Replace(@"'",string.Empty);

没有什么工作,请帮助我解决我在这里做错了什么。

从字符串 C# 中删除反斜杠

这些反斜杠实际上不会出现在最终字符串中。它们只是引号""的转义序列。

MSDN 转义序列

我的猜测是,您正在调试器中查看字符串,该字符串仍将显示为未转义。

使用以下代码,这将对您有所帮助。

    string x=@"ABCD'EFG";
    string y=x.Replace(@"'","");