Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript LCase function


May 13, 2021 VBScript


Table of contents


VBScript LCase function

The VBScript LCase function returns a string that has been converted to lowercase letters.


VBScript LCase function Complete VBScript reference manual

The LCase function converts the specified string to small case.

Tip: See UCase function.

Grammar

LCase(string)

parameter describe
string Required.A string that needs to be converted to lowercase.

Instance 1

<script type="text/vbscript">

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

</script>

The above example output results:

this is a beautiful day!

Try it out . . .

Instance 2

<script type="text/vbscript">

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

</script>

The above example output results:

this is a beautiful day!

Try it out . . .

VBScript LCase function Complete VBScript reference manual