码迷,mamicode.com
首页 > 其他好文 > 详细

boost 中文编码转换

时间:2018-05-07 13:37:31      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:des   and   string   str   stream   max   round   one   tween   


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 中文编码转换

标签:des   and   string   str   stream   max   round   one   tween   

原文地址:https://www.cnblogs.com/zendu/p/9001799.html

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