LCase Function

Converts all uppercase letters in a string to lowercase.

See also: UCase Function

Синтаксис

LCase (Text As String)

Return value:

Сатрҳо

Parameters:

Text: Any string expression that you want to convert.

Error codes:

5 Invalid procedure call

Намуна

Sub ExampleLUCase

Dim sVar As String

    sVar = "Las Vegas"

    Print LCase(sVar) ' Returns "las vegas"

    Print UCase(sVar) ' Returns "LAS VEGAS"

End Sub