I'm using this little snippet.
string.replaceAll("[^\\p{ASCII}]","")
I want to delete or remove the nonAsciiCharacters but i have a problem for example the following string is getting rip
final String myString = "cada dia es más cercano a Dios.";
but the á is getting remove and this is the 225 Ascii character i thought that this regex will replace all the NON-ASCII but á is ascii character why is this?
Maybe i get it all wrong.