2012年8月12日
摘要: public class GetCNSpell { /// <summary> /// 提取汉字首字母 /// <param name="strText">需要转换的字</param> /// <returns>转换结果</returns> public string GetChineseSpell(string strText) { int len = strText.Length; string myStr = ""; for (int i = 0; i < len; i++) { m 阅读全文
posted @ 2012-08-12 17:17 爱搁浅 阅读(372) 评论(0) 推荐(0) 编辑