Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

UCASE$

Returns a character string with all letters in the specified string expression in uppercase characters.

Syntax

UCASE$(string_expression)

Comments

string_expression is any string expression.

Example

a$ = "aBcd#F"
PRINT UCASE$(a$)

Results in:

ABCD#F

See Also