hCyv6‖

wrBBN‖LCase Function

dkB32‖Converts all uppercase letters in a string to lowercase.

sQC4R‖See also: UCase Function

FVEx2‖Syntax:

chngB‖LCase (Text As String)

bBBqF‖Return type:

String

WADQ4‖Parameters:

FqYxU‖ Text: Any string expression that you want to convert.

SEjHR‖Error codes:

5 Invalid procedure call

EFSA4‖Example:


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