CFLib.org – Common Function Library Project

XMLUnFormat(string)

Last updated November 15, 2002

author

Kreig Zimmerman

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="&quot;That&apos;s a very safe string &amp; &lt;TAG&gt; you&apos;re it!!!&quot;";
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,"&apos;","'","ALL");
    resultString=ReplaceNoCase(resultString,"&quot;","""","ALL");
    resultString=ReplaceNoCase(resultString,"&lt;","<","ALL");
    resultString=ReplaceNoCase(resultString,"&gt;",">","ALL");
    resultString=ReplaceNoCase(resultString,"&amp;","&","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

Created by Raymond Camden / Design by Justin Johnson