#include <boost/format.hpp>
boost::format f = boost::format("%.2f %s %d") % 1.234 %"123" % 12;
std::string s = f.str();
等同于
boost::format f = boost::format("%.2f %s %d");
f % 1.234 %"123" % 12;
std::string s = f.str();
类似CString的格式化
CString t = L"123";
CString s;
s.Format(L"%.2f %s %d", 1.234, t, 12);
以上这篇C++ string格式化输出方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。
您可能感兴趣的文章:详解C++ string常用截取字符串方法详解C++ string字符串类详解C++中string的用法和例子C++中将string类型转化为int类型