Meteor 2 Scripting Functions
String
string
string::lower(
string
str)
Convert a string to lower case.
Example
string str = "Wise One";
print(str.lower());
See also
string::upper
string
string::upper(
string
str)
Convert a string to upper case.
Example
string str = "Wise One";
print(str.upper());
See also
string::lower
Index