up vote 15 down vote favorite
11
share [g+] share [fb]

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?

Note:

  • 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.
  • 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.

Background:

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.

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.

link|improve this question

feedback

7 Answers

up vote 23 down vote accepted

It may not be perfect, but what I've done in that case is below. You can adjust to use with a stream.

/// <summary>
/// Removes control characters and other non-UTF-8 characters
/// </summary>
/// <param name="inString">The string to process</param>
/// <returns>A string with no control characters or entities above 0x00FD</returns>
public static string RemoveTroublesomeCharacters(string inString)
{
    if (inString == null) return null;

    StringBuilder newString = new StringBuilder();
    char ch;

    for (int i = 0; i < 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 < 0x00FD && ch > 0x001F) || ch == '\t' || ch == '\n' || ch == '\r')
        {
            newString.Append(ch);
        }
    }
    return newString.ToString();

}
link|improve this answer
Wonderful solution, thank you for posting this. – Jim Beam Dec 16 '09 at 19:30
@Jim well, feel free to upvote it then :) – Eugene Katz Dec 18 '09 at 18:15
It didn't catch 0x3c , one of my application thinks that its hex , I am using ibex – Thunder Sep 21 '10 at 6:22
try dnewcome's solution below. – Eugene Katz Sep 21 '10 at 17:07
-1 this answer is misleading because it removes characters that are valid in XML, that are not control characters, and that are valid UTF-8. – Daniel Cassidy Sep 2 '11 at 15:43
show 3 more comments
feedback

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:

Char = #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]

In .NET, the internal representation of Unicode characters is only 16 bits, so we can't `allow' 0x10000-0x10FFFF explicitly. The XML spec explicitly disallows 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.

The comments in Eugene's solution are misleading though, the problem is that the characters we are excluding are not valid in XML ... 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.

public static string XmlCharacterWhitelist( string in_string ) {
	if( in_string == null ) return null;

	StringBuilder sbOutput = new StringBuilder();
	char ch;

	for( int i = 0; i < in_string.Length; i++ ) {
		ch = in_string[i];
		if( ( ch >= 0x0020 && ch <= 0xD7FF ) || 
			( ch >= 0xE000 && ch <= 0xFFFD ) ||
			ch == 0x0009 ||
			ch == 0x000A || 
			ch == 0x000D ) {
			sbOutput.Append( ch );
		}
	}
	return sbOutput.ToString();
}
link|improve this answer
thankx dnewcome – Ashish Jul 27 '11 at 5:45
feedback
private static String removeNonUtf8CompliantCharacters( final String inString ) {
    if (null == inString ) return null;
    byte[] byteArr = inString.getBytes();
    for ( int i=0; i < byteArr.length; i++ ) {
        byte ch= byteArr[i]; 
        // remove any characters outside the valid UTF-8 range as well as all control characters
        // except tabs and new lines
        if ( !( (ch > 31 && ch < 253 ) || ch == '\t' || ch == '\n' || ch == '\r') ) {
            byteArr[i]=' ';
        }
    }
    return new String( byteArr );
}
link|improve this answer
-1 This answer is misleading and wrong because it removes characters that are valid in both Unicode and XML. – Daniel Cassidy Sep 2 '11 at 15:52
feedback

i found some issues, so this is my solution:

private static String removeNonUtf8CompliantCharacters( final String inString ) {
    if (null == inString ) return null;
    byte[] byteArr = inString.getBytes();
    for ( int i=0; i < byteArr.length; i++ ) {
        byte ch= byteArr[i]; 
        // remove any characters outside the valid UTF-8 range as well as all control characters
        // except tabs and new lines
        if ( !( (ch > 31 && ch < 253 ) || ch == '\t' || ch == '\n' || ch == '\r') ) {
            byteArr[i]=' ';
        }
    }
    return new String( byteArr );
}
link|improve this answer
-1 This answer is misleading and wrong because it removes characters that are valid in both Unicode and XML. Also, it’s identical to your other answer. – Daniel Cassidy Sep 2 '11 at 15:54
You do not want to remove the tab and newline characters. – abhi Sep 7 '11 at 19:23
@abhi It doesn’t remove tab or newline characters. But it’s still wrong. – Daniel Cassidy Sep 21 '11 at 14:37
feedback

The above solutions seem to be for removing invalid characters prior to converting to XML.

Use this code to remove invalid XML characters from an XML string. eg. &x1A;

    public static string CleanInvalidXmlChars( string Xml, string XMLVersion )
    {
        string pattern = String.Empty;
        switch( XMLVersion )
        {
            case "1.0":
                pattern = @"&#x((10?|[2-F])FFF[EF]|FDD[0-9A-F]|7F|8[0-46-9A-F]9[0-9A-F]);";
                break;
            case "1.1":
                pattern = @"&#x((10?|[2-F])FFF[EF]|FDD[0-9A-F]|[19][0-9A-F]|7F|8[0-46-9A-F]|0?[1-8BCEF]);";
                break;
            default:
                throw new Exception( "Error: Invalid XML Version!" );
        }

        Regex regex = new Regex( pattern, RegexOptions.IgnoreCase );
        if( regex.IsMatch( Xml ) )
            Xml = regex.Replace( Xml, String.Empty );
        return Xml;
    }

http://balajiramesh.wordpress.com/2008/05/30/strip-illegal-xml-characters-based-on-w3c-standard/

link|improve this answer
-1 This answer does not address the question asked, and in any case is wrong and misleading because it only removes invalid XML Character Entity References, but not invalid XML characters. – Daniel Cassidy Sep 2 '11 at 15:53
feedback

You can pass non-UTF characters with the following:

string sFinalString  = "";
string hex = "";
foreach (char ch in UTFCHAR)
{
    int tmp = ch;
   if ((ch < 0x00FD && ch > 0x001F) || ch == '\t' || ch == '\n' || ch == '\r')
    {
    sFinalString  += ch;
    }
    else
    {  
      sFinalString  += "&#" + tmp+";";
    }
}
link|improve this answer
-1 This answer is wrong because it generates invalid XML character entity references (for example &#1; is not a valid XML character entity reference). Also it is misleading because it removes characters that are valid in both Unicode and XML. – Daniel Cassidy Sep 2 '11 at 15:50
ya thats true but above solution is for if you want to pass invalid xml in xml file, than it will work or you cant pass invalid xml character in xml document – Murari Kumar Jan 6 at 13:29
You can’t pass invalid XML characters in an XML document no matter what you do. For instance, the character U+0001 START OF HEADING is not allowed in a well-formed XML document, and even if you try to escape it as &#1;, that’s still not allowed in a well-formed XML document. – Daniel Cassidy Jan 10 at 14:38
feedback

Try this for PHP!

$goodUTF8 = iconv("utf-8", "utf-8//IGNORE", $badUTF8);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.