vote up 2 vote down star

I need a way to transform numeric HTML entities into their plain-text character equivalent. For example, I would like to turn the entity:

é

into the character:

é

Through some googling around I found a function called HtmlUnEditFormat, but this function only transforms named entities. Is there a way to decode numeric entities in ColdFusion?

flag
you may find this useful as well: <cfoutput> <Cfset i = 1> <cfloop from="1" to="1000" index="i"> <Cfset value = chr(i)> chr(#i#) = #value#<br/> </cfloop> </cfoutput> – Jay Nov 3 at 18:53

2 Answers

vote up 6 vote down check

That linked function is icky - there's no need to name them explicitly, and as you say it doesn't do numerics.

Much simpler is to let CF do the work for you - using the XmlParse function:

<cffunction name="decodeHtmlEntity" returntype="String" output="false">
    <cfargument name="Entity" type="String" hint="&##<number>; or &<name>;" />
    <cfreturn XmlParse('<xml>#Arguments.Entity#</xml>').XmlRoot.XmlText />
</cffunction>

That one works with Railo, I can't remember if CF supports that syntax yet though, so you might need to change it to:

<cffunction name="decodeHtmlEntity" returntype="String" output="false">
    <cfargument name="Entity" type="String" hint="&##<number>; or &<name>;" />
    <cfset var XmlDoc = XmlParse('<xml>#Arguments.Entity#</xml>') />
    <cfreturn XmlDoc.XmlRoot.XmlText />
</cffunction>
link|flag
1  
this is smart! cool! – Henry Oct 30 at 0:04
+1 Very nice! (though a bit resource-heavy) – Tomalak Oct 30 at 10:03
+1 Nice out-of-the-box thinking for a built-in function. – Al Everett Oct 30 at 13:21
For a more lightweight option, we should in theory be able to dip into the Java classes that are used to implement XmlParse and find the specific entity decoding/resolving method to use - but I've just been looking through the apidocs and not been able to find anything. – Peter Boughton Oct 30 at 14:16
1  
This is excellent and works well, many thanks! For fun I've been digging into a Java solution to this and found that the Apache commons string escaping utilities contains an unescapeHtml function. Docs here: tinyurl.com/3n9pem That might do the same thing with less overhead, but it requires installing a new Java class on the server, restarting, etc. so I haven't tried it yet. For now, this works perfectly. Thanks again! – pb Oct 30 at 15:38
vote up 1 vote down

It should be quite easy to code one up yourself. Just edit the HtmlUNEditFormat() func you found, to include them to the end of the lEntities & lEntitiesChars.

link|flag
I think there are something like over 100,000 potential numeric entities. I could definitely add a few hundred and cover the most-used entities, but I was hoping for something that would cover everything. – pb Oct 29 at 22:59
If you were going down this route (don't; see my answer) you could do something like Chr(rereplace(Arguments.Entity,'\D','')) - after determining if it was a decimal entity. Hex entities would be similar but would need to convert the hex to decimal to use the Chr function. – Peter Boughton Oct 29 at 23:08
(Oh, and there should be an 'all' argument at the end of the above rereplace call) – Peter Boughton Oct 29 at 23:19
Actually, I would not be surprised if this approach would turn out as way faster than XML-parsing a single character with each function call. +1 from me. – Tomalak Oct 30 at 10:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.