Lcase$

String management function.

The Lcase$ function converts all characters in the specified string to lowercase.

Syntax

var$=Lcase$(<string$>)

Parameters

<string$>, string to be converted.

Return value

var$, string with all characters converted to lowercase.

Examples

 

a$ = Lcase$("bCdeF/G") ' Returns bcdef/g

a$ = Lcase$(a$)