Re: [xsl] Testing for upper and lower case

Subject: Re: [xsl] Testing for upper and lower case
From: Andrew Welch <andrew.j.welch@xxxxxxxxx>
Date: Thu, 3 Nov 2011 16:16:01 +0000
>  Is it possible to determine if the first
> letter of a word is upper or lower case?

string-to-codepoints($str)[1]

will give you the codepoint of the first letter, you can then if its:

65 to 90 its upper case

97 to 122 its lower case

is that what you meant?


-- 
Andrew Welch
http://andrewjwelch.com

Current Thread