I've been given an xml string which I need to put through a parser. Its currently complaining because of an illegal xml character. Very simplified example:
<someXml>this & that</someXml>
I know that the solution is to replace & with &, but I'm not generating the XML and therefore have no control over the values.
A simple string replace is not the right way to to this since the '&' has special meaning in XML and a global replace of '&' with '&' would ruin the special meaning which was intended. Is there a solution to take a full xml document and 'fix' it so that '&' become '&', but only where intended? Am I safe to globally replace ' & ' with ' & ' (note the spaces on either side)?