Tagged Questions
7
votes
7answers
3k views
C++ format macro / inline ostringstream
I'm trying to write a macro that would allow me to do something like: FORMAT(a << "b" << c << d), and the result would be a string -- the same as creating an ostringstream, inserting ...
2
votes
2answers
291 views
how to truncate width of integral types with std::ostringstream?
Say you have something like:
std::ostringstream oss;
int value(42);
oss.fill('0');
oss << std::setw(3) << value;
cout << oss.str();
OUTPUT: 042
This output is because std::setw ...