将unicode转义序列转换为字符串

时间:2010-12-09 13:08:50

标签: c# unicode escaping sequences

嗨,我有这个问题。从服务器我得到JSON字符串作为unicode转义序列我需要将此序列转换为unicode字符串。我找到了一些解决方案,但是任何解决方案都不适用于所有json响应。

例如,从服务器我得到这个字符串。

string encodedText="{\"DATA\":{\"idUser\":18167521,\"nick\":\"KecMessanger2\",\"photo\":\"1\",\"sex\":1,\"photoAlbums\":0,\"videoAlbums\":0,\"sefNick\":\"kecmessanger2\",\"profilPercent\":0,\"emphasis\":false,\"age\":25,\"isBlocked\":false,\"PHOTO\":{\"normal\":\"http://213.215.107.125/fotky/1816/75/n_18167521.jpg?v=1\",\"medium\":\"http://213.215.107.125/fotky/1816/75/m_18167521.jpg?v=1\",\"24x24\":\"http://213.215.107.125/fotky/1816/75/s_18167521.jpg?v=1\"},\"PLUS\":{\"active\":false,\"activeTo\":\"0000-00-00\"},\"LOCATION\":{\"idRegion\":\"1\",\"regionName\":\"Banskobystricku00fd kraj\",\"idCity\":\"109\",\"cityName\":\"Rimavsku00e1 Sobota\"},\"STATUS\":{\"isLoged\":true,\"isChating\":false,\"idChat\":0,\"roomName\":\"\",\"lastLogin\":1291898043},\"PROJECT_STATUS\":{\"photoAlbums\":0,\"photoAlbumsFavs\":0,\"videoAlbums\":0,\"videoAlbumsFavs\":0,\"videoAlbumsExts\":0,\"blogPosts\":0,\"emailNew\":0,\"postaNew\":0,\"clubInvitations\":0,\"dashboardItems\":26},\"STATUS_MESSAGE\":{\"statusMessage\":\"Nepru00edtomnu00fd.\",\"addTime\":\"1291887539\"},\"isFriend\":false,\"isIamFriend\":false}}"; 

jsonstring中的statusMessage包含 Nepru00edtomnu00fd ,在.net中,unicode字符串是Neprítomný

jsonstring中的

区域在.net unicode字符串中包含 Banskobystricku00fd BanskoBystrický

其他示例:

  1. Nepru00edtomnu00fd - > Neprítomný
  2. Banskobystricku00fd - >班斯卡比斯特理查
  3. Trenu010du00edn - >特伦钦
  4. 我需要使用斯洛伐克语将unicode转义序列转换为.net字符串。

    转换时我使用了这个函数:

    private static string UnicodeStringToNET(string input)
    {
        var regex = new Regex(@"\\[uU]([0-9A-F]{4})", RegexOptions.IgnoreCase);
        return input = regex.Replace(input, match => ((char)int.Parse(match.Groups[1].Value,
          NumberStyles.HexNumber)).ToString());
    }
    

    哪里有问题?

2 个答案:

答案 0 :(得分:2)

这是我写的一个方法(基于以前的答案)来完成这项工作。它处理\ uhhhh和\ Uhhhhhhhh,它将保留转义的unicode转义(所以如果你的字符串需要包含一个文字\ uffff,你可以这样做)。临时占位符字符\ uf00b位于private use area中,因此通常不应出现在Unicode字符串中。

    public static string ParseUnicodeEscapes(string escapedString)
    {
        const string literalBackslashPlaceholder = "\uf00b";
        const string unicodeEscapeRegexString = @"(?:\\u([0-9a-fA-F]{4}))|(?:\\U([0-9a-fA-F]{8}))";
        // Replace escaped backslashes with something else so we don't
        // accidentally expand escaped unicode escapes.
        string workingString = escapedString.Replace("\\\\", literalBackslashPlaceholder);

        // Replace unicode escapes with actual unicode characters.
        workingString = new Regex(unicodeEscapeRegexString).Replace(workingString,
            match => ((char) Int32.Parse(match.Value.Substring(2), NumberStyles.HexNumber))
            .ToString(CultureInfo.InvariantCulture));

        // Replace the escaped backslash placeholders with non-escaped literal backslashes.
        workingString = workingString.Replace(literalBackslashPlaceholder, "\\");
        return workingString;
    }

答案 1 :(得分:1)

你的转义序列不是以\“\ u00fd”开头,所以你的Regex应该只是

"[uU]([0-9A-F]{4})"

...