Pomoc LibreOffice 24.8
Przekształca wszystkie wielkie litery ciągu na małe litery.
Zobacz także: Funkcja UCase
LCase (tekst As String)
String
Tekst: Dowolny ciąg, który ma zostać przekształcony.
Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' "las vegas"
    Print UCase(sVar) ' "LAS VEGAS"
End Sub