Converts a string to all upper case. |
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$) |