I have the following code snippet for special character override
public String removerAcentos(String str) {
return Normalizer.normalize(str.replaceAll(" ", ""), Normalizer.Form.NFD).replaceAll("[^\p{ASCII}]", "");
}
When I run on my mac...
asked by
12.05.2017 / 16:14