Difference between revisions of "NXSL:lower"
Jump to navigation
Jump to search
(Created page with "__NOTOC__ Converts ''string'' to lowercase. == Syntax == lower(''string''); == Parameters == {| class="wikitable" |- | ''string'' || The string to convert. |} == Retur...") |
m (Text replacement - "^" to "{{deprecated}}") |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | {{deprecated}}__NOTOC__ | ||
Converts ''string'' to lowercase. | Converts ''string'' to lowercase. | ||
| Line 10: | Line 10: | ||
== Parameters == | == Parameters == | ||
{| class="wikitable" | :{| class="wikitable" | ||
|- | |- | ||
| ''string'' || The string to convert. | | ''string'' || The string to convert. | ||
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 lowercase.
Syntax
lower(string);
Parameters
string The string to convert.
Return Value
Source string converted to lowercase.
Examples
lower("aBcD") -> "abcd"