Next in thread → Next in month →

Re: [xml-dev] RE: XML versus Unicode ... here are the facts about their differences

From
Michael Kay <>
To
Date
2013-01-31T23:27:29Z
ID
<>
Thread
Re: [xml-dev] RE: XML versus Unicode ... here are the facts about their differences
> Roger C: Fact: XML parsing is done on codepoints, but XPath does NOT do its string matching operations based on codepoints. XPath uses a byte-for-byte comparison.
> ------------
>
> David L: I believe this is false.
>
>
David L is correct.

When comparing names of elements or attributes, XPath uses codepoint 
comparison.

When comparing strings in user data, XPath uses a default collation, 
which may be established contextually in some implementation-dependent 
way. For example, it might use the collation appropriate to the current 
user's locale. The default collation might or might not do Unicode 
normalization before comparison.

(In Saxon, the default collation if you don't ask for anything different 
is codepoint collation, because this is adequate for many applications 
and is much faster than locale-sensitive collation. But you can set a 
different collation through the API if required.)

Michael Kay
Saxonica
Next in thread → Next in month →