LCASE(string)
Description
LCASE returns string with all of its uppercase characters converted to lowercase. The required parameter, string, is any valid string expression.
Example
REM LCASE Example
'LCASE returnsstringwithalllowercasechars
DIM Uncle
Uncle = "JIM"
PRINT Uncle & " lowercase is " &LCASE(Uncle)
Output
JIM lowercase is jim
Related Items
UCASE