I Have a Set of Accented Character like
I have to convert all the Accented Character to normal Character.
If i give àáâãäåæ or ÀÁÂÃÄÅ it should come normal 'a' or 'A'.
Please give any suggestion.
I Have a Set of Accented Character like
I have to convert all the Accented Character to normal Character.
If i give àáâãäåæ or ÀÁÂÃÄÅ it should come normal 'a' or 'A'.
Please give any suggestion.
Check out Text::Unidecode. The unidecode() function will take those characters and return their ASCII translations. However, be careful with this module as there a few disclaimers/constraints.
Hope that helps!