boost 中文编码转换
Posted 怎度网
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了boost 中文编码转换相关的知识,希望对你有一定的参考价值。
Lstring CHanderHttp::CircleDesc(Lint nCurCircle, Lint nMaxCircle,Lint usercount)
{
std::stringstream ss;
if (nMaxCircle == ONE_ROUND_MAXCIRCLE)
{
ss << "局数:" << nCurCircle << "/" << usercount << "圈";
}
else
{
ss << "局数:" << nCurCircle << "/" << nMaxCircle;
}
string result = boost::locale::conv::between(ss.str(), "UTF-8", "GBK");
return std::move(result);
}
以上是关于boost 中文编码转换的主要内容,如果未能解决你的问题,请参考以下文章
用于字符串编码的 boost::locale to_utf 函数,喜欢抛出