Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to convert characters in French, Sweden and others language in their "normal" standard ASCII format.

I don't know how to explain, here's an example:

  • ç -> c
  • ò -> o

...

In bash Unix I would use iconv. How can I do in ColdFusion9 / Java?

share|improve this question
Check this out stackoverflow.com/a/5807419/56604 – Sergii Mar 29 '12 at 14:42
In Java, one can do this: stackoverflow.com/questions/6328654/… – James Mohler Nov 28 '12 at 0:48

2 Answers

up vote 1 down vote accepted

I found this simple UDF at CFLib.org:

deAccent

<cfscript>
/**
 * Replaces accented characters with their non accented closest equivalents.
 * 
 * @return Returns a string. 
 * @author Rachel Lehman (raelehman@gmail.com) 
 * @version 1, November 15, 2010 
 */
function deAccent(str){
    var newstr = "";
    var list1 = "á,é,í,ó,ú,ý,à,è,ì,ò,ù,â,ê,î,ô,û,ã,ñ,õ,ä,ë,ï,ö,ü,ÿ,À,È,Ì,Ò,Ù,Á,É,Í,Ó,Ú,Ý,Â,Ê,Î,Ô,Û,Ã,Ñ,Õ,Ä,Ë,Ï,Ö,Ü,x";
    var list2 = "a,e,i,o,y,u,a,e,i,o,u,a,e,i,o,u,a,n,o,a,e,i,o,u,y,A,E,I,O,U,A,E,I,O,U,Y,A,E,I,O,U,A,N,O,A,E,I,O,U,Y";

    newstr = ReplaceList(str,list1,list2);
    return newstr;
}
</cfscript>
share|improve this answer
so do I have to list ALL regional chars??? :) what about swedish?? – Fabio B. Mar 29 '12 at 14:09
Obviously you can add whatever characters you need. There's nothing native in ColdFusion to do this sort of conversion. You might be able to use something in the underlying Java (see Sergii's comment). – Al Everett Mar 29 '12 at 14:56

you can also use the charsetEncode function built in to CF.

encodedString = charsetEncode(stringToBeConverted, "utf-8");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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