As the title says, I am trying to replace all extended ASCII characters by their "original" characters. So for example, I want this:
"ã é ò û ï"
to turn into this:
"a e o u i"
is there any way in java to do this?
As the title says, I am trying to replace all extended ASCII characters by their "original" characters. So for example, I want this:
"ã é ò û ï"
to turn into this:
"a e o u i"
is there any way in java to do this?