Format
string1=LCASE$(string2)
Description
This statement will convert all of the letters in string2 from upper case
to lower case, and store the result in string1.
Example
A$=LCASE$("123 Main Street, USA")
After the execution of this statement, the variable A$ will contain the
string "123 main street, usa".
See Also
|