Whatever message this page gives is out now! Go check it out!
LCase(string)Parameter | Description |
string | A string or a variable that contains one |
<cfscript>
myString1="THE ROLLING STONES"
writeOutput(LCase(myString1) & "<br/>") // the rolling stones
myString2="The Rolling Stones"
writeOutput(LCase(myString2)) // the rolling stones
</cfscript>