Lowercase Function

Converts all characters in a String to lowercase characters.

Syntax

result = Lowercase( value )

result = stringVariable.Lowercase( )


Parameters

value

String

The original string.


Return Value

Result

String

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



Notes

Returns the value with all alphabetic characters in lowercase.


Examples

The example below converts the value passed to lowercase.

Dim s As String
s=Lowercase ("tHe Quick fOX") //returns "the quick fox"
s=Lowercase("THE 5 LAZY DOGS") //returns "the 5 lazy dogs"

See Also

Titlecase, Uppercase functions.