LCase Function

Converts all uppercase letters in a string to lowercase.

See also: UCase Function

Sintaksė:

LCase (Text As String)

Grąžinimo reikšmė:

String

Parametrai:

Text: Any string expression that you want to convert.

Klaidos kodai:

5 Neteisingas procedūros iškvietimas

Pavyzdys:


Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' Returns "las vegas"
    Print UCase(sVar) ' Returns "LAS VEGAS"
End Sub