I\'m fairly new to c# so that\'s why I\'m asking this here.
I am consuming a web service that returns a long string of XML values. Because this is a string all the attri
There's no reason to use a Regular expression at all... that's a lot heavier than what you need.
string xmlSample = "blah blah blah"; xmlSample = xmlSample.Replace("\\\", "\"");