本文介绍了在C ++中的千分隔符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想使用以下格式在C ++中创建一个字符串:
I want to create a string in C++ with the following format:
string + numbersWithFormatAndThousandSeparator + string
我不知道 std :: string
$ c> snprintf()提供类似这样的格式,特别是千位分隔符。
I am not sure whether std::string
or snprintf()
provides format like that especially the thousand separator. Could someone help me with this?
推荐答案
快速简单的方法:
std::ostringstream ss;
ss.imbue(std::locale("en_US.UTF-8"));
ss << 1033224.23;
return ss.str();
将返回一个字符串1,033,244.23
Would return a string "1,033,244.23"
但是它需要在系统上配置 en_US.UTF-8
语言环境。
But it requires en_US.UTF-8
locale to be configured on your system.
这篇关于在C ++中的千分隔符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!