Small company logo:
   History
 
Advertising banner:
 
 LCase
Home • Help • Customization Tools • FCAS • Language Reference • LCase
 
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