摘要: rt 根据所具有的Unicode编码用C#语言把它转换成汉字的代码师傅的代码:public static string UnicodeToGB(string text) { System.Text.RegularExpressions.MatchCollection mc = System.Text.RegularExpressions.Regex.Matches(text, "\\\\u([\\w]{4})"); if (mc != null && mc.Count > 0) { f... 阅读全文
posted @ 2012-08-21 15:17 Ro_s__ 阅读(10490) 评论(2) 推荐(0) 编辑