C#, string replace russian to english
- by Fabio Beoni
Hello,
I have a strange problem replacing chars in string...
I read a .txt file containing russian text, and starting from a list of letters russian to english (ru=en), I loop the list and I WOULD like to replace russian characters with english characters.
The problem is: I can see in the debug the right reading of the russian and the right reading of the english, but using myWord = myWord.Replace(ruChar, enChar), the string is not replaced.
My txt file is a UTF-8 encoding.
Any suggestions??
Thank you to all...