-
-
-
- public static class StringToUniCode
- {
-
-
-
-
-
- public static string StringToUnicode(string s)
- {
- char[] charbuffers = s.ToCharArray();
- byte[] buffer;
- StringBuilder sb = new StringBuilder();
- for (int i = 0; i < charbuffers.Length; i++)
- {
- buffer = System.Text.Encoding.Unicode.GetBytes(charbuffers[i].ToString());
- sb.Append(String.Format("//u{0:X2}{1:X2}", buffer[1], buffer[0]));
- }
- return sb.ToString();
- }
-
-
-
-
-
- public static string UnicodeToString(string srcText)
- {
- string dst = "";
- string src = srcText;
- int len = srcText.Length / 6;
- for (int i = 0; i <= len - 1; i++)
- {
- string str = "";
- str = src.Substring(0, 6).Substring(2);
- src = src.Substring(6);
- byte[] bytes = new byte[2];
- bytes[1] = byte.Parse(int.Parse(str.Substring(0, 2), NumberStyles.HexNumber).ToString());
- bytes[0] = byte.Parse(int.Parse(str.Substring(2, 2), NumberStyles.HexNumber).ToString());
- dst += Encoding.Unicode.GetString(bytes);
- }
- return dst;
- }
- }
posted @
2013-03-22 16:16
王者杂货铺
阅读(
2269)
评论()
编辑
收藏
举报