本文介绍了如何将unicode转义序列字符串转换为可读字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好!



我收到的JSON消息包含如下字符串:

\ u96fb \ u5b50 \ u66f8 \ u7c4d \ u300e这是\ u82f1 \ u6587 \ u6cd5 \ u300f \ air5e \ u4e2d



如何将其转换为可读格式并分配给CString?



谢谢

Hello!

I'm getting JSON message with string like this:
"\u96fb\u5b50\u66f8\u7c4d\u300eThis is \u82f1\u6587\u6cd5\u300f\uff5e\u4e2d"

How can I convert it to readable format and assign to CString?

Thank you

推荐答案

void MyConversion(CStringW str&, const char *sSrc)
{
    size_t nSize = strlen(s);
    wchar_t lpszBuf = new wchar_t[nSize + 1];
    size_t i = 0;
    while (*s && i < nSize)
    {
        if ('\\' == s[0] && 'u' == s[1])
        {
            // This assumes that all hex codes consist of four characters
            char cSave = s[6];
            s[6] = 0;
            lpszBuf[i++] = strtoul(s + 2, NULL, 16);
            s += 6;
            *s = cSave;
        }
        else
            lpszBuf[i++] = *s++;
    }
    lpszBuf[i] = 0;
    str = lpszBuf;
    delete [] lpszBuf;
}


这篇关于如何将unicode转义序列字符串转换为可读字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 09:40