Top "Boost-format" questions

The Boost Format Library provides a class for formatting arguments according to a format-string

C++11 Equivalent to Boost.Format

Anything like Boost.Format in the C++11 standard? I've been able to avoid using Boost with a better C++11 option …

c++ c++11 boost boost-format
Using %s format specifier with boost::format and std::string

I know that using the %s format specifier and std::string like this leads to undefined behaviour: std::string myString = "…

c++ boost boost-format
Why boost::format cannot be converted directly to std::string?

Following is not possible: std::string s = boost::format("%d") % 1; // error You have to explicitely call the method str(): std::…

c++ boost boost-format
Formatting n significant digits in C++ without scientific notation

I want to format a floating point value to n significant digits but never using scientific notation (even if it …

c++ format scientific-notation boost-format