I have a string variable that stores a text in Turkish language
string str = "açğş";
I want to convert each character of this string to appropriate English Letter.
So that the conversion must be like: , açğş –> acgs
How can I do it using .NET/C# ?
From one of Jeff Atwood’s original posts on URL purifying, they call RemapInternationalCharToAscii. please check that/those post(s) out, as I believe they are a great solution (and, given it’s Jeff Atwood ♦ speed has been taken in to consideration).