i need to convert French text to most correct analogue in ASCII. Let me explain. In German you should convert ä to ae, this is not simple removing of diacritics, it is finding most correct analogue. Please help me with French. I found that there is no programmatic way to do it, i create Dictionary<char, string>
.
To convert (+ capitals): é, à, è, ù, â, ê, î, ô, û, ë, ï, ü, ÿ, ç. and any other you suggest! Please write suggested substitution in ascii.
Thanks, Andrey.
PS: Please don't point to How do I remove diacritics (accents) from a string in .NET?. That method is great but a bit language agnostic. It just strips diacritics. I plan to use it as a default if i don't have good analogue.
PPS: Pleas don't close the question, it is related to programming, since i implement multingual app