I want to replace attributes from Unicode to without accent.
For example : Find âÂăĂđĐêÊôÔơƠưƯ --> Replace aAaAdDeEoOoOuU
Ăn >> An
Đô >> Do
Could you tell me how to replace it by python or other way?
Thank you
I want to replace attributes from Unicode to without accent.
For example : Find âÂăĂđĐêÊôÔơƠưƯ --> Replace aAaAdDeEoOoOuU
Ăn >> An
Đô >> Do
Could you tell me how to replace it by python or other way?
Thank you
Best answer by caracadrian
Use StringPairReplacer with Replacement Pairs set to â a  A ă a Ă A đ d Đ D ê e Ê E ô o Ô O ơ o Ơ o ư u Ư U.
The pair are separated by space as following
key value key value
where key is the string you want to replace and value is the replacement string.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.