Htmleditformat - MACROMEDIA COLDFUSION MX 61-CFML Reference

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

Advertisement

HTMLEditFormat

Description
Replaces special characters in a string with their HTML-escaped equivalents.
Returns
HTML-escaped string string. Returns are removed from string. Special characters (for
example,
) are escaped.
< " &
Category
Display and formatting functions
Function syntax
HTMLEditFormat(string [, version ])
See also
HTMLCodeFormat
Parameters
Parameter
string
version
Usage
This function typically increases the length of a string. This can cause unpredictable results when
performing certain string functions (
string.
The only difference between this function and
surrounds the text in an HTML
Example
<!--- This example shows the effects of HTMLCodeFormat and
HTMLEditFormat. View it in your browser, then View it
using your browser's the View Source command. --->
<cfset testString="This is a test
& this is another
<This text is in angle brackets>
Previous line was blank!!!">
<cfoutput>
<h3>The text without processing</h3>
#testString#<br>
<h3>Using HTMLCodeFormat</h3>
#HTMLCodeFormat(testString)#
<h3>Using HTMLEditFormat</h3>
#HTMLEditFormat(testString)#
</cfoutput>
516
Chapter 3: ColdFusion Functions
Description
A string or a variable that contains one.
HTML version to use. currently ignored.
• -1: The latest implementation of HTML
• 2.0: HTML 2.0 (Default)
• 3.2: HTML 3.2
Left
tag.
pre
,
, and
, for example) against the expanded
Right
Mid
HTMLCodeFormat
is that
HTMLCodeFormat

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion mx

Table of Contents