Let say you have this:
var name = "ÄBÖ";
and you want to convert it to
name = "ABO";
The following snippet will do it in Java. IT also will remove the characters that don't have any alternative in ASCII characters such as ß.
var name = "ÄBÖ";
and you want to convert it to
name = "ABO";
The following snippet will do it in Java. IT also will remove the characters that don't have any alternative in ASCII characters such as ß.