LCase Function /text/sbasic/shared/03120302.xhp
LCase function LCase Function Converts all uppercase letters in a string to lowercase.
See also: UCase Function LCase (Text As String) String Text: Any string expression that you want to convert. Sub ExampleLUCase Dim sVar As String sVar = "Las Vegas" Print LCase(sVar) ' Returns "las vegas" Print UCase(sVar) ' Returns "LAS VEGAS" End Sub