I've got an UTF-8 string I want to convert to ASCII characters (< 127). An example: the French élève has to become eleve (which is readable in ascii).
A quick search brought me to the existing java function: java.text.Normalizer.
but... this function doesn't replace all of them! Some of the characters that don't get replaced: ı ə ß Þ etc...
Is there really no function that can convert ALL of these foreign signs to the ASCII format?
A quick search brought me to the existing java function: java.text.Normalizer.
but... this function doesn't replace all of them! Some of the characters that don't get replaced: ı ə ß Þ etc...
Is there really no function that can convert ALL of these foreign signs to the ASCII format?