XMLUnFormat(string)
Last updated November 15, 2002
Version: 1 | Requires: CF5 | Library: StrLib
Description:
This is a simple UDF which does the exact opposite of CFMX's XmlFormat() function. Specifically, it replaces the following five characters in XML-escaped data with their normal equivalents:
> with >
< with <
' with '
" with "
& with &
Return Values:
Returns a string.
Example:
<cfscript>
XmlSafe=""That's a very safe string & <TAG> you're it!!!"";
XmlUnsafe=XmlUnformat(XmlSafe);
WriteOutput(htmlCodeFormat(XmlUnsafe));
</cfscript>
Parameters:
Name | Description | Required |
---|---|---|
string | String to format. | Yes |
Full UDF Source:
/**
* UN-escapes the five forbidden characters in XML data.
*
* @param string String to format. (Required)
* @return Returns a string.
* @author Kreig Zimmerman (kkz@foureyes.com)
* @version 1, November 15, 2002
*/
function XMLUnFormat(string) {
var resultString=string;
resultString=ReplaceNoCase(resultString,"'","'","ALL");
resultString=ReplaceNoCase(resultString,""","""","ALL");
resultString=ReplaceNoCase(resultString,"<","<","ALL");
resultString=ReplaceNoCase(resultString,">",">","ALL");
resultString=ReplaceNoCase(resultString,"&","&","ALL");
return resultString;
}
Search CFLib.org
Latest Additions
Raymond Camden added
QueryDeleteRows
November 04, 2017
Leigh added
nullPad
May 11, 2016
Raymond Camden added
stripHTML
May 10, 2016
Kevin Cotton added
date2ExcelDate
May 05, 2016
Raymond Camden added
CapFirst
April 25, 2016