Revision: 3683
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at August 30, 2007 14:39 by jsbournival
Initial Code
key = key.replace('Ã', 'Y');
key = key.replaceAll("Ù | Ú | Û | Ü", "U");
key = key.replaceAll("Ò | Ó | Ô | Õ | Ö", "O");
key = key.replaceAll("ÃŒ | à | ÃŽ | Ã", "I");
key = key.replaceAll("È | É | Ê | Ë", "E");
key = key.replace('Ç', 'C');
key = key.replaceAll("À | à | Â | Ã | Ä | Å | Æ", "A");
Initial URL
http://www.developpez.net/forums/showthread.php?t=7810
Initial Description
Initial Title
Remove french accents from a String
Initial Tags
java
Initial Language
Java