Description
The fn:lower-case function converts a string to lower case. The mappings between lowercase and uppercase characters are determined by Unicode case mappings. If a character in $arg does not have a corresponding uppercase character, it is included in the result string unchanged.
This description is © Copyright 2007, O'Reilly Media. It is excerpted from the book XQuery by Priscilla Walmsley, O'Reilly, 2007. For a complete explanation of this function, please refer to Appendix A of the book. Arguments and Return Type| Name | Type |
$arg |
xs:string? |
| return value |
xs:string |
Examples| XSLT Example | Results |
|---|
lower-case('QUERY')
|
query
|
lower-case('Query')
|
query
|
lower-case('QUERY123')
|
query123
|
See AlsoHistory |
|