Advertising banner:

History
 
 LCase
Home • Help • A0 • Customization Tools • FCAS • Language Reference • LCase
 
LCase (strings)
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