vote up 3 vote down star

On this data:

<row Id="37501" PostId="135577" Text="...uses though.&#x10;"/>

I'm getting this error with the Python sax parser:

xml.sax._exceptions.SAXParseException:
comments.xml:29776:332: reference to invalid character number

(example trimmed, 332 points to "". <-- should be & # x 1 0 ;

Is the sax parser correct in rejecting this character?

flag

3 Answers

vote up 7 vote down check

As others have stated, you probably meant &#10;. The reason why &#x10; (0x10 = 10h = 16) is invalid is that it's explicitly excluded by the XML 1.0 standard: (http://www.w3.org/TR/xml/#NT-Char)

Char ::= #x9 | #xA | #xD | [#x20-#xD7FF] | [#xE000-#xFFFD] | [#x10000-#x10FFFF]
link|flag
If your libraries support it, XML 1.1 has a wider range of legal characters - w3.org/TR/xml11/#charsets – Lachlan Jun 16 at 0:13
Thanks Lachlan. Edited to make XML 1.0 explicit. – Roger Pate Jun 16 at 0:22
Yep, I double-checked the header, it's version="1.0". thanks! – Mark Harrison Jun 16 at 0:49
vote up 1 vote down

Yes. Technically, it should reject that.

&#x10; means hexadecimal 10 = decimal 16 which is a control character. You should change it to &#10; if you want to use the newline character.

link|flag
The StackOverflow podcast actually mentioned this issue a week or two ago. – richardtallent Jun 15 at 23:51
Incidentally, &#10; is also a control character. – Roger Pate Jun 15 at 23:52
@R. Pate: Well, you're right from the historical perspective but newline, tab, space, ... has a "visual" representation, unlike NUL, DEL, ... – Mehrdad Afshari Jun 15 at 23:55
My point is that trying to justify it's validity (or well-formedness) based on being a control character is wrong. DEL (&x7F;) is allowed, for example. – Roger Pate Jun 16 at 0:07
@R. Pate: Agreed. I didn't have another word and I thought it might roughly express my point. – Mehrdad Afshari Jun 16 at 0:13
show 1 more comment
vote up 1 vote down

&#10; is the linefeed character, which seems to be the intent.

&#x10; would be the same as &#16; (10 hex is 16 decimal) and would refer to the DLE (data link escape) character.

DLE is a transmission control character used to control the interpretation of data being transmitted.

link|flag

Your Answer

Get an OpenID
or

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