本文主要是介绍中文转拼音,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
中文转拼音
public static string GetPinYin(string str)
{
string result = string.Empty;
foreach (char item in str)
{
try
{
ChineseChar cc = new ChineseChar(item);
if (cc.Pinyins.Count > 0 && cc.Pinyins[0].Length > 0)
{
string temp = cc.Pinyins[0].ToString();
result += temp.Substring(0, temp.Length - 1);
}
}
catch (Exception)
{
result += item.ToString();
}
}
return result;
}
这篇关于中文转拼音的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!