Skip to content

LCase

Returns a string converted to lowercase.


LCase

Converts all uppercase letters in a string to lowercase.

Syntax

LCase(string)

Parameters

Parameter Type Description
string String The string to convert.

Return Value

String — a copy of string with all characters converted to lowercase.

Example

Dim result As String
result = LCase("Hello World")
Print result   ' Output: hello world