(Formerly known as global function StrToUpperCase, which is now obsolete)
String.UpperCase()
Returns an upper 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 uppercased = mystring.UpperCase();
Display("Old: %s, new: %s", mystring, uppercased);
will display "Old: THIS is a test string, new: THIS IS A TEST STRING".
See Also: String.LowerCase
|