string.upperCase
This function returns the string in uppercase.
Syntax
string.upperCase(str)
Arguments
Argument |
Type |
Description |
---|---|---|
str |
string |
Source string |
Returns
Type |
Description |
---|---|
string |
String converted to upper case. |
Examples
The function string.upperCase("Flogo")
returns FLOGO
.