0

I Have a Set of Accented Character like

enter image description here

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.

depsai
  • 405
  • 2
  • 14
  • 1
    @SzG: The question you linked is itself a duplicate of http://stackoverflow.com/q/11058211/1030675 – choroba Aug 08 '14 at 06:07

1 Answers1

1

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!

mivk
  • 13,452
  • 5
  • 76
  • 69
Dave Cooper
  • 10,494
  • 4
  • 30
  • 50