LCase Function [Runtime] /text/sbasic/shared/03120302.xhp Sun Microsystems, Inc. converted from old format - fpe
LCase function LCase Function [Runtime] Converts all uppercase letters in a string to lowercase.
See also: UCase Function Syntax: LCase (Text As String) Return value: String Parameters: Text: Any string expression that you want to convert. Example: Sub ExampleLUCase Dim sVar As String sVar = "Las Vegas" Print LCase(sVar) REM Returns "las vegas" Print UCase(sVar) REM Returns "LAS VEGAS" end Sub