所需頭文件:
#include <boost/format.hpp>
示例代碼:
- #include <iostream>
- #include <string>
- #include <boost/format.hpp>
-
- using namespace std;
- int _tmain(int argc, _TCHAR* argv[])
- {
-
- cout << boost::format("writing %1%, x=%2% : %3%-th try") % "toto" % 40.23 % 50 << endl;
-
-
-
- boost::format fmter("%2% %1%");
- fmter % 36;
- fmter % 77;
- cout << fmter << endl;
-
-
-
- fmter % 12;
- fmter % 24;
- cout << fmter << endl;
-
-
-
- std::string s = fmter.str();
- std::string s2 = str( boost::format("%2% %1% %2% %1%")%"World"%"Hello");
-
- cout << s << endl << s2 << endl;
-
-
-
-
-
- cout << boost::format("%3.1f - %.2f%%") % 10.0 % 12.5 << endl;
-
-
-
- cout << boost::format("%2$3.1f - %1$.2f%%") % 10.0 % 12.5 << endl;
-
-
- cin.get();
- return 0;
- }
boost::format裏的指示符語法大體有三大類:
繼承並強化自printf的格式化字符串
形式爲:[ N$ ] [ flags ] [ width ] [ . precision ] type-char
N$可選,指定使用第N個參數(注意,要麼全部指示符都加此參數,要麼都不加)
接下來的參數能夠參數printf的指示符,只是format爲其中的flags添加了'_'和'='標誌,用於指出內部對齊和居中對齊。
設置打印規則,它是printf參數的一個補充,只是爲了更直觀點。
形式爲:%|spec|
如:%|1$+5|表示顯示第一個參數,顯示正負號,寬度爲5
簡單的位置標記
形式爲:%N%
簡單地聲明顯示第N個參數,優勢是比較直觀並且不用指定類型。