ToUpper
(Engine-Level Function)
Description: | Returns a text string with all the characters converted to upper case. |
Returns: | Text |
Usage: | Script or steady state. |
Function Groups: | String and Buffer |
Related to: | ToLower |
Format: | ToUpper(String) |
Parameters: |
String |
Required. 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".