Lcase - MACROMEDIA COLDFUSION MX 61-CFML Reference

Cfml reference
Hide thumbs Also See for COLDFUSION MX 61-CFML:
Table of Contents

Advertisement

LCase

Description
Converts the alphabetic characters in a string to lowercase.
Returns
A string, converted to lowercase.
Category
String functions
Function syntax
LCase(string)
See also
UCase
Parameters
Parameter
string
Example
<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>
Description
A string or a variable that contains one
LCase
557

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion mx

Table of Contents