ToUpper

Description:              This function returns a text string with all the characters converted to upper case..

Returns:                    Text

Usage:                       Script or Steady State

Format:                      ToUpper(String)

Parameters:             String     { text }  { required }  { no default: }

                                                Any text expression giving the string to convert to all upper case characters.

Comments:               The return value will contain all the same characters as the original string, except each character which is a lower case letter will be replaced with the corresponding upper case letter. All other characters remain unchanged.

Example:

upperString = ToUpper("Bye-bye Birdie");

Upon execution of this statement, upperString will contain the string "BYE-BYE BIRDIE".

See Also:

ToLower