转换字符串中汉字为其拼音缩写(C#)
摘要:
//将指定字符串中的汉字转换为拼音缩写,其中非汉字保留为原字符。 public string GetPinYin(string text) { char pinyin; byte[] array; System.Text.StringBuilder sb = new System.Text.StringBuilder(text.Length); foreach(c... 阅读全文
posted @ 2007-10-18 23:44 netshuai 阅读(750) 评论(0) 推荐(0) 编辑