Converts the alphabetic characters in a string to lowercase.
A string, converted to lowercase.
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>
Output
the rolling stones
the rolling stones
Sign in to your account