Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

VBScript LCase Function


❮ Complete VBScript Reference

The LCase function converts a specified string to lowercase.

Tip: Also look at the UCase function.

Syntax

LCase(string)

Parameter Description
string Required. The string to be converted to lowercase

Examples

Example 1

<%

txt="THIS IS A BEAUTIFUL DAY!"
response.write(LCase(txt))

%>

The output of the code above will be:

this is a beautiful day!
Show Example »

Example 2

<%

txt="This is a BEAUTIFUL day!"
response.write(LCase(txt))

%>

The output of the code above will be:

this is a beautiful day!
Show Example »

❮ Complete VBScript Reference