LCase Function [Runtime]/text/sbasic/shared/03120302.xhpSun Microsystems, Inc.converted from old format - fpeLCase functionLCase Function [Runtime]Converts all uppercase letters in a string to lowercase.See also: UCase FunctionSyntax:LCase (Text As String)Return value:StringParameters:Text: Any string expression that you want to convert.Example:Sub ExampleLUCaseDim sVar As String sVar = "Las Vegas" Print LCase(sVar) ' Returns "las vegas" Print UCase(sVar) ' Returns "LAS VEGAS"End Sub