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 StringsVar = "Las Vegas"Print LCase(sVar) REM Returns "las vegas"Print UCase(sVar) REM Returns "LAS VEGAS"end Sub