Escapes special XML characters in a string so that the string can be used as text in XML.
A copy of the string
parameter that is safe to use as text in XML.
String functions, XML functions
XmlFormat(string
)
cfxml, XmlNew, XmlParse, XmlValidate; "Using XML and WDDX" in the ColdFusion Developer's Guide
ColdFusion MX: Added this function.
Parameter |
Description |
---|---|
string |
A string or a variable that contains one |
This function escapes characters as follows:
Text character |
Escaped representation |
---|---|
Greater than symbol (>) |
> |
Less than symbol (<) |
< |
Single-quotation mark (') |
' |
Double-quotation mark (") |
" |
Ampersand symbol (&) |
& |
Carriage return (but not line feed) |
Removed from the text. |
High ASCII characters in the range 128-255. |
Replaced by unicode escape sequence; for example, É (capital E with an Acute symbol) is replaced by É. |
The following example shows how XmlFormat escapes special XML characters. Use the View Source command in the browser to see the results. ColdFusion interprets the "" in the second text string as representing a single-quotation mark in text before it applies the XmlFormat function.
<?xml version = "1.0"?> <cfoutput> <someXML> <someElement someAttribute="#XmlFormat("'a quoted value'")#"> #XmlFormat("Body of element with <, >, "" and & goes here.")# </someElement> </someXML> </cfoutput>