std::string formatting like sprintf

前端 未结 30 3168
野趣味
野趣味 2020-11-22 04:42

I have to format std::string with sprintf and send it into file stream. How can I do this?

30条回答
  •  忘掉有多难
    2020-11-22 05:10

    This is how google does it: StringPrintf (BSD License)
    and facebook does it in a quite similar fashion: StringPrintf (Apache License)
    Both provide with a convenient StringAppendF too.

提交回复
热议问题