码迷,mamicode.com
首页 > Windows程序 > 详细

C# \\u8888类型的unicode转换为字符串方法

时间:2015-11-17 12:17:06      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

1、双斜杠\\ 处理;

2、将编码分组,将编码转换为int,再转换为char。

string sss = "\\u6c88\\u9633";
char sOut = 1;  
string[] arr = a.Split(new string[] { "\\u" }, StringSplitOptions.RemoveEmptyEntries);
foreach (string s in arr)  
{
     sOut = (char)Convert.ToInt32(s.Substring(0, 4), 16);
     sss += sOut;
}

//将字符串按\\u分开,再将分开的字符串转为int,在转为char,就得到了。

C# \\u8888类型的unicode转换为字符串方法

标签:

原文地址:http://www.cnblogs.com/RedSky/p/4970989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!