khfaraaz82@gmail.com | c526fe9 | 2012-08-10 22:09:13 +0000 | [diff] [blame] | 1 | /* |
2 | * Test case Name : toLowerCas04.aql | ||||
3 | * Description : Test lowercase(string) function | ||||
4 | * : Convert all upper case english alphabets A-Z to lower case a-z | ||||
5 | * Success : Yes | ||||
6 | * Date : 19th April 2012 | ||||
7 | */ | ||||
8 | |||||
9 | write output to nc1:"rttest/string_toLowerCase04.adm"; | ||||
10 | |||||
11 | 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"]))] | ||||
12 | return $a |