将特殊的土耳其字符转换为国际拉丁字符
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将特殊的土耳其字符转换为国际拉丁字符相关的知识,希望对你有一定的参考价值。
public static string ConvertTurkishChars(string text) { String[] olds = { "Ğ", "ğ", "Ü", "ü", "Ş", "ş", "İ", "ı", "Ö", "ö", "Ç", "ç" }; String[] news = { "G", "g", "U", "u", "S", "s", "I", "i", "O", "o", "C", "c" }; for (int i = 0; i < olds.Length; i++) { text = text.Replace(olds[i], news[i]); } text = text.ToUpper(); return text; }
以上是关于将特殊的土耳其字符转换为国际拉丁字符的主要内容,如果未能解决你的问题,请参考以下文章