Action
Converts a string into upper case.
Syntax
dest = UCASE( source )
Remarks
dest  | 
The string variable that will be assigned with the upper case of string SOURCE.  | 
source  | 
The source string. The original string will be unchanged.  | 
See also
Example
Dim S As String * 12 , Z As String * 12
Input "Hello " , S 'assign string
S = Lcase(s) 'convert to lowercase
Print S 'print string
S = Ucase(s) 'convert to upper case
Print S 'print string