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"
Result:
THE string
the string in lowercase
THE STRING IN UPPERCASE
NM
--- In blassic@yahoogroups.com, "not_found_blassic" <ninsesabe@a...>
wrote:
> Hello.
...
> Also, the program uses the UCASE$ function. In Blassic you can use
> UPPER$ instead. I can add UCASE$ to improve compatibility if
someone
> tells me the exact sintax. Is there an equivalent that converts to
lower case?