| Contents > CFML Reference > ColdFusion Functions > LCase |
|
|
|
|
||
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 |
<h3>LCase Example</h3>
<cfif IsDefined("FORM.sampleText")>
<cfif FORM.sampleText is not "">
<p>Your text, <cfoutput>#FORM.sampleText#</cfoutput>,
returned in lowercase is <cfoutput>#LCase(FORM.sampleText)#
</cfoutput>.
<cfelse>
<p>Please enter some text.
</cfif>
</cfif>
<form action = "lcase.cfm">
<p>Enter your text. Press "submit" to see it returned in lowercase:
<p><input type = "Text" name = "SampleText" value = "SAMPLE">
<input type = "Submit" name = "" value = "submit">
</form>
|
|
||
| Contents > CFML Reference > ColdFusion Functions > LCase |
|
|
ColdFusion 8 | ColdFusion MX 7 | ColdFusion MX 6.1 | ColdFusion MX | Forums | Developer Center | Bug Reporting
Version 6.1
Comments are no longer accepted for ColdFusion MX 6.1. ColdFusion 8 is the current version.
RSS feed | Send me an e-mail when comments are added to this page | Comment Report
Current page: http://livedocs.adobe.com/coldfusion/6.1/htmldocs/functiob.htm
Comments
lbryngel said on Feb 23, 2004 at 1:47 PM : khorvath said on Oct 18, 2004 at 12:32 PM :