LCase Function

Converts all uppercase letters in a string to lowercase.

See also: UCase Function

Syntax:

LCase (Text As String)

Return value:

String

Parameters:

Text: Any string expression that you want to convert.

Error codes:

D'oh! You found a bug (text/sbasic/shared/00000003.xhp#err5 not found).

Example:


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

Please support us!