uCase$()
Converts all string's character to upperercase. You can omit the dollar
character so you can alternatively write it as uCase() .
Syntax:
string
= uCase$(
string
)
string
= uCase(
string
)
Example:
a$ = "test string"
b$ = uCase( a$ )
print(b$)
See also lCase$() command.