Search w3schools.com:

SHARE THIS PAGE

VBScript UCase Function


VBScript Reference Complete VBScript Reference

The UCase function converts a specified string to uppercase.

Tip: Also look at the LCase function.

Syntax

UCase(string)

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 »

VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]