Here you can find the source of removeAccents(String str)
Parameter | Description |
---|---|
str | string do qual deseja remover os acentos. |
public static String removeAccents(String str)
//package com.java2s; //License from project: Open Source License import java.text.Normalizer; public class Main { /**//ww w . j ava2 s . co m * Remove acentos dos caracteres trocando eles por caracteres sem acentos. * @param str string do qual deseja remover os acentos. * @return string com os caracteres modificados (sem acento). */ public static String removeAccents(String str) { str = Normalizer.normalize(str, Normalizer.Form.NFD); str = str.replaceAll("[\\p{InCombiningDiacriticalMarks}]", ""); return str; } }