
The LCASE$ function is a string function that returns another string where all upper case characters are changed into lower case characters. The original string remains unchanged.
The following example demonstrates this:
let a$ = "HeLlO WoRlD" let b$ = lcase$(a$) print a$ print b$
Internally, the C library function "tolower is used". See also UCASE$.