string.lowerCase
This function returns the string in lowercase.
Syntax
string.lowerCase(str)
Arguments
Argument |
Type |
Description |
---|---|---|
Str |
string |
Source string |
Returns
Type |
Description |
---|---|
string |
String in lower case. |
Examples
The function string.lowerCase("FLOGO")
returns flogo
.