Tamino XML Server Version 9.7
 —  XQuery 4 Reference Guide  —

fn:lower-case

Return lower-cased value of a string.


Syntax

fn:lower-case(xs:string $arg) => xs:string

Top of page

Description

This function returns the value of the string argument in lower case by translating each character in its lower case equivalent on its own. If the value of $arg is the empty sequence, the string of length zero is returned.

Note that not every character has a lower case equivalent. Also, the case mapping functions are not inverse to each other. This means that neither upper-case(lower-case($arg)) nor lower-case(upper-case($arg)) are guaranteed to yield $arg.

Top of page

Argument

$arg

string value

Top of page

Example

Top of page

Related Syntax Constructs

The following construct(s) refer to this construct:

Top of page