Is it possible to format number with thousands separator using fmt?
e.g. something like this:
int count = 10000;
fmt::print("{:10}\n", count);
update
I am researching fmt, so I am looking for solution that works with fmt library only, without modify locale in any way.
std::format
is proposed for C++20 – Febrific