Description
The LCase$ function converts the specified string to lowercase.
Syntax
var$ = Lcase$(<source_string>)
Parameter
<source_string>: string to be converted to lowercase.
Return Value
var$, string, result of the conversion.
Example
a$ = LCase$("bCdeF/G") ' Returns bcdef/g
