随笔 - 60  文章 - 11 评论 - 245 trackbacks - 2

07 2011 档案
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) 编辑