Converts the character string to lowercase taking into account the default locale.
1 string.toLowerCase
<string.toLowerCase>
<value /> !
</string.toLowerCase>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | string |
Returns | |
---|---|
Type | Description |
string | Returns the string of characters in lowercase. |
Exceptions
requires 1 arguments, received: ...
The entry parameter has not been specified.
Example
Pass to lowercases a string.
Copy
<xsql-script name='string_toLowerCase'> <body> <set name='a'>This IS a STRING OF characters.</set> <println><string.toLowerCase><a /></string.toLowerCase></println> </body> </xsql-script>
Returns:
Copy
this is a string of characters.