Community QBasic

Rebooting the QBasic we all know and love!


Project maintained by Cory Smith

LCASE$

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

Syntax

LCASE$(string_expression)

Comments

string_expression is any string expression.

Example

INPUT "Enter a string"; S$
PRINT LCASE$(S$)

See Also