Difference between revisions of "NXSL:upper"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Converts ''string'' to uppercase. == Syntax == upper(''string''); == Parameters == {| class="wikitable" |- | ''string'' || The string to convert. |} == Retur...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
Line 1: | Line 1: | ||
__NOTOC__ | {{deprecated}}__NOTOC__ | ||
Converts ''string'' to uppercase. | Converts ''string'' to uppercase. | ||
Latest revision as of 16:13, 13 September 2022
This Wiki is deprecated and we are are currrently migrating remaining pages into product documentation (Admin Guide, NXSL Guide) |
Converts string to uppercase.
Syntax
upper(string);
Parameters
string | The string to convert. |
Return Value
Source string converted to uppercase.
Examples
upper("aBcD") -> "ABCD"