Hello,
I have a question related to Java in my android application.
I have a list with some Belgian cities with accentued ( is that the right english word?) characters: (Liège,Quiévrain,Franière, etc.) and I would like to transform these special characters to compare with a list containing the same names in upper case, but without these characters ( LIEGE, QUIEVRAIN, FRANIERE)
What i first tried to do was to use the upper case:
LIEGE.contentEqual(Liège.toUpperCase()) but that doesn't fit because the Upper case of Liège is LIÉGE and not LIEGE.
I have some complicated ideas like replacing each characters, but that sound stupid and a long process.
Any idea on how to do that in a smart way?
Thank a lot