(Formerly known as global function StrToLowerCase, which is now obsolete)
String.LowerCase()
Returns a lower case version of the specified string.
NOTE: The new string is returned from this function; it
does NOT modify the original string.
Example:
String mystring = "THIS is a test string";
String lowercased = mystring.LowerCase();
Display("Old: %s, new: %s", mystring, lowercased);
will display "Old: THIS is a test string, new: this is a test string".
See Also: String.UpperCase
|