<< Click to Display Table of Contents >>
LCase(String)
Converts a string to lowercase.
See also: UCase
Example:
Sub Main
MsgBox LCase("Think BIG!") ' gives "think big!"
End Sub