UCase


Function UCase ( string )


Returns an all upper case version of string.


Syntax a = UCase("Hello There")


Remarks

UCase will convert all alpha characters (letters) in a string to their upper case versions.


See Also:

LCase String Functions


Example Script


STRING a = "this is too quiet!"


a = UCASE(a) ' results in a == "THIS IS TOO QUIET!"

PRINT a


Script Output


THIS IS TOO QUIET!