Converts the alphabetic characters in a string to uppercase.
A copy of a string, converted to uppercase.
UCase(string)
Parameter |
Description |
|---|---|
string |
A string or a variable that contains one |
<cfscript>
string="the quick brown fox jumps over the lazy dog"
writeOutput(UCase(string))
</cfscript>
Sign in to your account