Difference between revisions of "NXSL:lower"

From NetXMS Wiki
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...")
 
Line 10: Line 10:
== Parameters ==
== Parameters ==


{| class="wikitable"
:{|
|-
|-
| ''string'' || The string to convert.
| ''string'' || The string to convert.

Revision as of 20:51, 19 December 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"