/* | |
* Test case Name : toLowerCas04.aql | |
* Description : Test lowercase(string) function | |
* : Convert all upper case english alphabets A-Z to lower case a-z | |
* Success : Yes | |
* Date : 19th April 2012 | |
*/ | |
write output to nc1:"rttest/string_toLowerCase04.adm"; | |
for $a in[lowercase(codepoint-to-string([0065,0066,0067,0068,0069,0070,0071,0072,0073,0074,0075,0076,0077,0078,0079,0080,0081,0082,0083,0084,0085,0086,0087,0088,0089,0090])),lowercase(string-concat(["ABCDEFGHIJKLMNOP","QRSTUVWXYZ"]))] | |
return $a |