Purpose
Returns a string argument converted to all lowercase letters.
Syntax
LCase (StringExpression)
Example
Sub Main()
Dim s As String
s = LCase ("hEllo wOrld")
Print s
'displays "hello world"
Print LCase("THIS IS NOW LOWERCASE")
'displays "this is now lowercase"
End Sub
|