VBScript UCase Function
Complete VBScript Reference
The UCase function converts a specified string to uppercase.
Tip: Also look at the LCase function.
Syntax
| Parameter |
Description |
| string |
Required. The string to be converted to uppercase |
Examples
Example 1
<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(UCase(txt))
</script>
The output of the code above will be:
THIS IS A BEAUTIFUL DAY!
Try it yourself »
Example 2
<script type="text/vbscript">
txt="This is a BEAUTIFUL day!"
document.write(UCase(txt))
</script>
The output of the code above will be:
THIS IS A BEAUTIFUL DAY!
Try it yourself »
Complete VBScript Reference
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]