Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

VBScript LCase Function

Returns a string that has been converted to lowercase.

Syntax: VBScript LCase Function

LCase(string)

Arguments: VBScript LCase Function

string

Any valid string expression. If string contains Null, Null is returned.

Remarks: VBScript LCase Function

Only uppercase letters are converted to lowercase; all lowercase letters and nonletter characters remain unchanged.

The following example uses the LCase function to convert uppercase letters to lowercase:

Dim MyString

Dim LCaseString

MyString = "VBSCript"

LCaseString = LCase(MyString)   ' LCaseString contains "vbscript".

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.