Difference between revisions of "NXSL:lower"

m (Text replacement - "^" to "{{deprecated}}")
 
(One intermediate revision by one other user 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"
|-
|-
| ''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"