My ColdFusion app is required to create Word 2003 documents, with complex data like images (only a small text portion needs to be dynamic, though). To let this happen, I've saved a Word document that I use as a template in "single-file HTML" (read: MHT), and I insert data at specific points in the file from my ColdFusion scripts.

Passed the quoted-printable cleverness the MHT file format dragged me into (cause, you know, hard drives aren't 8-bit clean), it actually works pretty well. The only problem is that I need special (non-ASCII) characters in my Word documents, and apparently, neither my app nor Word is UTF-8, and even there they don't use the same encoding.

Now that I have my template and my program, I'm not very enthusiastic about changing their respective encodings. Another requirement is that users should be able to submit new templates, so I can't just change the template's encoding because newer templates will have the same problem.

I thought the simplest way to solve the problem would be to use a function like PHP's htmlentities, that converts every non-ASCII character in an HTML entity. Does ColdFusion have such a function?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

XmlFormat will convert ASCII characters in the 159-255 range along with the standard html entities.

link|improve this answer
feedback

You want HTMLEditFormat

link|improve this answer
Does it exist with ColdFusion 8? Besides, it doesn't look like it encodes non-ASCII characters, just HTML reserved characters. – zneak Mar 25 '11 at 14:58
It is, but in that case, I don't know of an all encompassing function, but you could search through the characters and find any with an asc() result that is less than 33 or higher than 126 and replace it with the html entity – Sean Coyne Mar 25 '11 at 15:07
I could, but I'd have to build a mapping between the char codes and the entities, which looks like a long and painful job. – zneak Mar 25 '11 at 15:12
no you just get the asc code: ex: asc("a"), then use that result in the entity: &###asc("a")#; all chars have an HTML entity equivalent of &#[number here]; – Sean Coyne Mar 25 '11 at 16:17
Is it certain that my encoding matches the one HTML uses? – zneak Mar 25 '11 at 17:06
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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