Explanation
LCASE$, UCASE$ Functions
Convert strings to all lowercase or all uppercase letters.Worth knowing
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
Useful and cross-version information about the programming environments of QBasic, QuickBasic and Visual Basic for DOS.
LCASE$(stringexpression$) |
UCASE$(stringexpression$) |
stringexpression$ | Any string expression. |
Test$ = "THE string"
PRINT Test$
PRINT LCASE$(Test$); " in lowercase"
PRINT UCASE$(Test$); " IN UPPERCASE"