Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
{fmt}を使用して引用符で囲まれた文字列を出力する方法はありますか?
これは私が達成したいことを示すコード例です:
fmt::print("Hello {}!", "Terens");
Hello "Terens"!の代わりにコードを印刷したいHello Terens!。
Hello "Terens"!
Hello Terens!
編集: 事前に知られていないさまざまなデータを印刷するために API を使用したい (ライブラリ用にこれを書いているので、データがstd::stringまたはstd::string_view.
std::string
std::string_view