[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Did you know that the lowercase of the Kelvin Sign (K) is the Latinsmall

  • From: "Costello, Roger L." <costello@mitre.org>
  • To: "xml-dev@lists.xml.org" <xml-dev@lists.xml.org>
  • Date: Mon, 28 Jan 2013 19:21:24 +0000

Did you know that the lowercase of the Kelvin Sign (K) is the Latinsmall
Hi Folks,

The Kelvin Sign (K) is high up in the Unicode code space, it is codepoint U+212A. That's way up there.

Compare with the Latin capital letter K, its codepoint is U+004B. That's way down there.

Interestingly, the lowercase of the Kelvin Sign is the Latin small letter k:

	lower-case(&#x212A) = 'k'

"So what's the big deal?" you ask. Actually, it's a really big deal. Let me explain.

Suppose you want to enforce this rule in your XML instance documents: 

    	The value of the <Name> element must
    	be 'Lockhart' (lowercase, uppercase, any
    	case).

In XPath the rule can be expressed using the matches() function:

    	matches(Name, 'Lockhart', 'i')

The third argument ('i') means that you want matches to do a "case insensitive match."

So, applying the matches() function to this:

    	<Name>Lockhart</Name>

returns true.

But it also returns true to this (recall that U+212A is the Kelvin Sign):

    	<Name>Loc&#x212Ahart</Name>

Ouch!

The <Name> element contains invalid data but the matches() function claims that it is valid data.

Let's see how this applies to XML Schemas. Here I declare a <Name> element and specify that its value must be 'Lockhart' (case insensitive):

              <xs:element name="Name">
                    <xs:simpleType>
                        <xs:restriction base="xs:string">
                            <xs:assertion test="matches($value, 'Lockhart', 'i')" />
                        </xs:restriction>
                    </xs:simpleType>
                </xs:element>

I then validate this:

	<Name>Loc&#x212Ahart</Name>

against the schema and the validator says "Valid"

Ouch!

Invalid data has gotten into our system.

Question: Are there other characters similar to the Kelvin Sign? That is, are there other characters that are outside [A-Za-z]  but when lower-case() or upper-case() is applied to them they are inside [A-Za-z]?

/Roger 


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.