我正在尝试使用stringstreams来获取字符串。我是这样做的:
std::string const DilbertImage::startUrl = "http://tjanster.idg.se/dilbertimages/dil";
std::string const DilbertImage::endUrl = ".gif";
DilbertImage::DilbertImage(int d)
{
cal.setDate(d);
int year, month, date;
year = cal.getYear();
month = cal.getMonth();
date = cal.getNumDate();
std::stringstream ss;
ss << year << "/";
if(month < 10)
{
ss << 0;
}
ss << month << "/" << "Dilbert - " << cal.getNumDate() << ".gif";
filePath = ss.str();
ss.str("");
ss.clear();
ss << startUrl << date << endUrl;
url = ss.str();
std::cout << url << '\t' << filePath << std::endl;
}
我希望得到两个看起来像这样的好字符串:
url: http://tjanster.idg.se/dilbertimages/dil20060720.gif
filePath: /2006/07/Dilbert - 20060720.gif
但是当我把intts放在stringstream中时,它们会以某种方式结束获取空格(或者在其中间插入一些其他空白字符)当我从控制台窗口粘贴它时,字符显示为*。
他们最终看起来像这样:
url: http://tjanster.idg.se/dilbertimages/dil20*060*720.gif
filepath: /2*006/07/Dilbert - 20*060*720.gif
为什么会这样?
以下是整个项目:http://pastebin.com/20KF2dNL
答案 0 :(得分:5)
"*"
个字符是thousands separator。有人搞砸了你的locale。
这可能会解决它:
std::locale::global(std::locale::classic());
如果您只想覆盖numpunct
方面(确定数字格式的方式):
std::locale::global(std::locale().combine<std::numpunct<char>>(std::locale::classic()));
在您的情况下,当您设置瑞典语区域时:
std::locale swedish("swedish");
std::locale swedish_with_classic_numpunct = swedish.combine<std::numpunct<char>>(std::locale::classic());
std::locale::global(swedish_with_classic_numpunct);