如何从输出中删除 {}?
#include <iostream>
#include <vector>
#include <fmt/format.h>
#include <fmt/ranges.h>
int main () {
std::vector<int> v = {1,2,3};
std::string s = fmt::format("{}", v);
std::cout << s << '\n'; // output : {1, 2, 3}
return 0;
}
如何在上述代码的输出中删除'{'和'}'并且只打印:1、2、3