sprintf与C ++字符串类

时间:2011-09-28 13:28:06

标签: c++ std

我真的很喜欢sprintf in c++?给出的答案,但它仍然不是我想要的。

我想用占位符创建一个常量字符串,比如

const std::string LOGIN_URL = "%s://%s/chronicle/spring/api/logout";

然后使用可替换参数构建字符串,如:

sprintf(url, LOGIN_URL, protocol, server); //coding sprintf from long ago memory, please ignore

但如果能帮助我,我真的想远离C弦。

stringbuilder()方法要求我将常量字符串组合在一起并在我想使用它们时组装它们。这是一个很好的方法,但我想要的是整洁。

2 个答案:

答案 0 :(得分:11)

Boost format library听起来就像你要找的那样,例如:

#include <iostream>
#include <boost/format.hpp>

int main() {
  int x = 5;
  boost::format formatter("%+5d");
  std::cout << formatter % x << std::endl;
}

或者您的具体示例:

#include <iostream>
#include <string>
#include <boost/format.hpp>

int main() {
  const std::string LOGIN_URL = "%s://%s/chronicle/spring/api/logout";

  const std::string protocol = "http";
  const std::string server = "localhost";

  boost::format formatter(LOGIN_URL);
  std::string url = str(formatter % protocol % server);
  std::cout << url << std::endl;
}

答案 1 :(得分:1)

看看:Boost Format