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