Converts the string of characters to uppercase taking into account the default regional settings.
1 string.toUpperCase
<string.toUpperCase>
<value /> +
</string.toUpperCase>
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Evalue | string |
Returns | |
---|---|
Type | Description |
string | Returns the text or string in uppercase. |
Exceptions
requires 1 arguments, received: ...
The entry parameter has not been specified.
Example
Pass to uppercase a string.
Copy
<xsql-script name='string_toUpperCase'> <body> <set name='a'>This is a string of characters.</set> <println><string.toUpperCase><a /></string.toUpperCase></println> </body> </xsql-script>
Returns:
Copy
THIS IS A STRING OF CHARACTERS.