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...") |
(No difference)
|
Revision as of 21:17, 2 August 2012
Converts string to lowercase.
Syntax
lower(string);
Parameters
string | The string to convert. |
Return Value
Source string converted to lowercase.
Examples
lower("aBcD") -> "abcd"