Turkish characters are saved in this way.
Read text file encoding I used this “ISO-8859-1” but it’s getting better. What other solution can be?
Hi @Ertan_AY
You can try using the “UTF-8” encoding instead of “ISO-8859-1”. To do this, you can specify the encoding as “System.Text.Encoding.UTF8” in the activity properties.
Regard,
Hello @Ertan_AY
Refer to this link, you may get some idea.
"ISO-8859-1
Other characters are corrected, only İ and Ş do not?
Couldn’t it be something else?
Ertan Bey Merhaba,
Çok mantıklı bir çözüm olmayabilir ancak .Replace komutunu kullanarak bir çözüm sağlayabilirsiniz diye düşünüyorum. Aşağıdaki örnek gibi:
strVariable.Replace(“İ”,“I”).Replace(“Ş”,“S”)
Başka hatalı durumlar varsa onları da tanımlayarak biraz uzun yoldan da olsa işlemler tanımlanabilir gibi gözüküyor.
Saygılarımla
Ömer