VBScript » Functions » LCase

Version: 1.0

Syntax:
LCase(String)

The LCase function converts a string to all lower case letters.

There is also a companion function UCase to convert to upper case letters.

You can also use the name of the string.

Examples

Code:
<% =LCase("Aardvarks do not make good pets!")%>
Output:
aardvarks do not make good pets!
Language(s): VBScript
Code:
<% astring="Leopards also make bad pets!"%>
<% =LCase(astring) %>
Output:
leopards also make bad pets!
Language(s): VBScript

See Also: