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 :
Top comments (0)