SyntaxFix
Write A Post
Hire A Developer
Questions
Try it like this:
Replace("\\\"","");
This will replace occurrences of \" with empty string.
\"
Ex:
string t = "\\\"the dog is my friend\\\""; t = t.Replace("\\\"","");
This will result in:
the dog is my friend