Skip to content

Instantly share code, notes, and snippets.

@Shorang
Created March 9, 2016 13:23
Show Gist options
  • Save Shorang/ef7ac6ded3af06edbf74 to your computer and use it in GitHub Desktop.
Save Shorang/ef7ac6ded3af06edbf74 to your computer and use it in GitHub Desktop.
Remoção de Acentos - Java
Normalizer.normalize(texto, Normalizer.Form.NFD).replaceAll("\\p{IsM}+", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment