qbasic.hlp (Topic list)
LCASE$, UCASE$ Functions
  Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
Convert strings to all lowercase or all uppercase letters.
 
LCASE$(stringexpression$)
UCASE$(stringexpression$)
 
    ■ stringexpression$    Any string expression.
 
Example:
    Test$ = "THE string"
    PRINT Test$
    PRINT LCASE$(Test$); " in lowercase"
    PRINT UCASE$(Test$); " IN UPPERCASE"