Comparing characters without accents - making é and e the same
Monday, June 14th, 2010For a recent project, we needed to compare words without paying attention to their accents. In Java, you can do it like this:
String normalizedText = Normalizer.normalize(text, Normalizer.Form.NFD)
.replaceAll("p{InCombiningDiacriticalMarks}+", "");