Probably a noob question but, after some search I could not find the answer.
I’ve receive this String like the following one: “Distribui\u00e7\u00e3o Alimentar”, and I want to set it as text of a EditText. How can I “replace” the \u00e7 and \u00e3o to “ç” and “ã”?
Thanks in advance.
With the string replace function
String newString = stringName.replaceAll("\u007", "c');String newString2 = stringName.replaceAll("\u00e7", "a");and you could concatenate the two with the
concatmethod