I am sent an XML string that I'm trying to parse via an XmlReader and I'm trying to strip out the \"
characters.
I've tried
.Replace(@"\", "")
.Replace("\\''", "''")
.Replace("\\''", "\"")
plus several other ways.
Any ideas?
I am sent an XML string that I'm trying to parse via an XmlReader and I'm trying to strip out the \"
characters.
I've tried
.Replace(@"\", "")
.Replace("\\''", "''")
.Replace("\\''", "\"")
plus several other ways.
Any ideas?
Where do these characters occur? Do you see them if you examine the XML data in, say, notepad? Or do you see them when examining the XML data in the debugger. If it is the latter, they are only escape characters for the
"
characters, and so part of the actual XML data.Replace(@"\""", "")
You have to use double-doublequotes to escape double-quotes within a verbatim string.
Try it like this:
This will replace occurrences of
\"
with empty string.Ex:
This will result in:
In .NET Framework 4 and MVC this is the only representation that worked:
Using a backslash in whatever combination did not work...
so
Replace("\\\"","")
Were you trying it like this:
? If so, that's the problem -
Replace
doesn't change the original string, it returns a new string with the replacement performed... so you'd want:Note that this will replace each backslash and each double-quote character; if you only wanted to replace the pair "backslash followed by double-quote" you'd just use:
(As mentioned in the comments, this is because strings are immutable in .NET - once you've got a string object somehow, that string will always have the same contents. You can assign a reference to a different string to a variable of course, but that's not actually changing the contents of the existing string.)