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
Generated on the 23 November 2024 at 08:20:44 (UK Time)