C++ fmt 库,仅使用格式说明符格式化单个参数

C++ fmt library, formatting a single argument with just format specifier

使用 C++ fmt 库,并给出一个简单的格式说明符,有没有办法使用它来格式化单个参数?

// example
std::string str = magic_format(".2f", 1.23);

// current method
template <typename T>
std::string magic_format(const std::string spec, const T arg) {
    return fmt::format(fmt::format("{{:{}}}", spec), arg);
}

虽然上面的实现符合我的要求,但我更喜欢一种不需要我在此过程中构建新的临时字符串的方法。

您可以直接使用 formatter<T> 来完成此操作:


template <typename T>
std::string magic_format(fmt::string_view spec, const T& arg) {
  fmt::formatter<T> f;
  fmt::format_parse_context parse_ctx(spec);
  f.parse(parse_ctx);
  std::string str;
  auto out = std::back_inserter(str);
  using context = fmt::format_context_t<decltype(out), char>;
  auto args = fmt::make_format_args<context>(arg);
  context format_ctx(out, args, {});
  f.format(arg, format_ctx);
  return str;
}

神马:https://godbolt.org/z/Ras_QI