How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T04:50:43Z http://stackoverflow.com/feeds/question/20762 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/20762/how-do-you-remove-invalid-hexadecimal-characters-from-an-xml-based-data-source-pr 1 How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data? Oppositional 2008-08-21T18:47:49Z 2009-03-13T06:12:16Z <p>Is there any easy/general way to clean an XML based data source prior to using it in an XmlReader so that I can gracefully consume XML data that is non-conformant to the hexadecimal character restrictions placed on XML?</p> <p>Note: </p> <ul> <li>The solution needs to handle XML data sources that use character encodings other than UTF-8, e.g. by specifying the character encoding at the XML document declaration. Not mangling the character encoding of the source while stripping invalid hexadecimal characters has been a major sticking point.</li> <li>The removal of invalid hexadecimal characters should only remove hexadecimal encoded values, as you can often find href values in data that happens to contains a string that would be a string match for a hexadecimal character.</li> </ul> <p><em>Background:</em></p> <p>I need to consume an XML-based data source that conforms to a specific format (think Atom or RSS feeds), but want to be able to consume data sources that have been published which contain invalid hexadecimal characters per the XML specification.</p> <p>In .NET if you have a Stream that represents the XML data source, and then attempt to parse it using an XmlReader and/or XPathDocument, an exception is raised due to the inclusion of invalid hexadecimal characters in the XML data. My current attempt to resolve this issue is to parse the Stream as a string and use a regular expression to remove and/or replace the invalid hexadecimal characters, but I am looking for a more performant solution.</p> http://stackoverflow.com/questions/20762/how-do-you-remove-invalid-hexadecimal-characters-from-an-xml-based-data-source-pr/20777#20777 2 Answer by Eugene Katz for How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data? Eugene Katz 2008-08-21T18:50:58Z 2008-08-21T18:50:58Z <p>It may not be perfect, but what I've done in that case is below. You can adjust to use with a stream.</p> <pre><code>/// &lt;summary&gt; /// Removes control characters and other non-UTF-8 characters /// &lt;/summary&gt; /// &lt;param name="inString"&gt;The string to process&lt;/param&gt; /// &lt;returns&gt;A string with no control characters or entities above 0x00FD&lt;/returns&gt; public static string RemoveTroublesomeCharacters(string inString) { if (inString == null) return null; StringBuilder newString = new StringBuilder(); char ch; for (int i = 0; i &lt; inString.Length; i++) { ch = inString[i]; // remove any characters outside the valid UTF-8 range as well as all control characters // except tabs and new lines if ((ch &lt; 0x00FD &amp;&amp; ch &gt; 0x001F) || ch == '\t' || ch == '\n' || ch == '\r') { newString.Append(ch); } } return newString.ToString(); } </code></pre> http://stackoverflow.com/questions/20762/how-do-you-remove-invalid-hexadecimal-characters-from-an-xml-based-data-source-pr/641632#641632 1 Answer by dnewcome for How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data? dnewcome 2009-03-13T06:12:16Z 2009-03-13T06:12:16Z <p>I like Eugene's whitelist concept. I needed to do a similar thing as the original poster, but I needed to support all Unicode characters, not just up to 0x00FD. The XML spec is:</p> <p>Char = #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]</p> <p>In .NET, the internal representation of Unicode characters is only 16 bits, so we can't `allow' 0x10000-0x10FFFF explicitly. The XML spec explicitly <em>disallows</em> the surrogate code points starting at 0xD800 from appearing. However it is possible that if we allowed these surrogate code points in our whitelist, utf-8 encoding our string might produce valid XML in the end as long as proper utf-8 encoding was produced from the surrogate pairs of utf-16 characters in the .NET string. I haven't explored this though, so I went with the safer bet and didn't allow the surrogates in my whitelist.</p> <p>The comments in Eugene's solution are misleading though, the problem is that the characters we are excluding are not valid in <em>XML</em> ... they are perfectly valid Unicode code points. We are not removing `non-utf-8 characters'. We are removing utf-8 characters that may not appear in well-formed XML documents.</p> <pre><code>public static string XmlCharacterWhitelist( string in_string ) { if( in_string == null ) return null; StringBuilder sbOutput = new StringBuilder(); char ch; for( int i = 0; i &lt; in_string.Length; i++ ) { ch = in_string[i]; if( ( ch &gt;= 0x0020 &amp;&amp; ch &lt;= 0xD7FF ) || ( ch &gt;= 0xE000 &amp;&amp; ch &lt;= 0xFFFD ) || ch == 0x0009 || ch == 0x000A || ch == 0x000D ) { sbOutput.Append( ch ); } } return sbOutput.ToString(); } </code></pre>