DEV Community

Vijay SRJ
Vijay SRJ

Posted on

How to remove accent marks in Java?

To remove accent marks from accented words like ‘tête-à-tête’ you need to follow two steps:
Step1 : Normalize the word using java.text.Normalizer

Step2 : Replace the accent characters from the normalised word with empty space (remove them)

Here is a working example :

https://fullstackdeveloper.guru/2021/02/11/how-to-replace-accented-characters-with-the-original-characters-in-java/

Top comments (0)