Excerpt | ||
---|---|---|
| ||
toLower(string) Converts a string to lower case. |
Function: toLower()
Converts a string to lower case.
...
Argument | Type | Description |
---|---|---|
string | String | String to be converted to lower case. |
Examples
toLower("TestString")
Converts the string "TestString" to "teststring".
...