C#取汉字首字母
摘要: #region 取中文首字母 public static string GetFirstLetter(string paramChinese) { string strTemp = ""; int iLen = paramChinese.Length; int i = 0; for (i = 0; i <= iLen - 1; i++) { strTemp += GetCharSpellCode...
阅读全文
posted @
2011-07-06 15:51 Ants 阅读(166) |
评论 (1) 编辑