I want to remove the '\'
character from my strings.
I've tried several ways but I am still not having any luck
Here is a small piece of my code. It is in fact an HTML obtained from another site.
I'm going to use it at my own site but \ makes problems!
src=\"http://bartarinha.com/file/logo/ideal.jpg\" style=\"border: 0px none\">
This code gives me error:
news_body_html = news_body_html.Replace("\", " ");
What is the correct way to remove the character?