LibreOffice 24.8 Help
Chuyển đổi mọi chữ hoa trong một chuỗi sang chữ thường.
Xem thêm: hàm UCase
LCase (Text As String)
String
Text: bất cứ biểu thức chuỗi nào cần chuyển đổi.
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub