Method

Lowercase


Description

Converts all characters in a string to Lowercase characters.

Usage

result=sourceVariable.Lowercase

Part

Type

Description

result

String

A copy of the original string with all characters converted to their lowercase equivalent.

sourceVariable

String

The original string.

Notes

Returns the value with all alphabetic characters in Lowercase.

Sample code

The examples below convert the value passed to Lowercase.

Var result As String
Var source As String = "tHe Quick fOX"
result = source.Lowercase // returns "the quick fox"

source = "THE 5 LAZY DOGS"
result = source.Lowercase // returns "the 5 lazy dogs"

Compatibility

All project types on all supported operating systems.

See also

Titlecase, Uppercase functions.