Upper$ (string$)  

Definition:

Converts a string to all upper case.

Parameter Description:


string$ = any valid string or string variable

Command Description:

This command takes the given string and converts it entirely to upper case.

Example:

name$="Shane R. Monroe"
print "Your name all in upper case is: " + upper$(name$)

Index