Func Lcase
# VBScript LCase Function
* * Complete VBScript Reference Manual](#)
* * *
The LCase function converts a specified string to lowercase.
**Tip:** See also 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!"
document.write(LCase(txt))
The output of the above example:
this is a beautiful day!
[Try it Β»](#)
## Example 2
txt="This is a BEAUTIFUL day!"
document.write(LCase(txt))
The output of the above example:
this is a beautiful day!
[Try it Β»](#)
* * Complete VBScript Reference Manual](#)
YouTip