14

我有这些变量:

boost::regex re //regular expression to use
std::string stringToChange //replace this string
std::string newValue //new value that is going to replace the stringToChange depending on the regex.

我只想替换它的第一次出现。

谢谢各位。

编辑:我发现了这个:

boost::regex_replace(stringToChange, re, boost::format_first_only);

但它说该函数不存在,我猜目前参数不正确。

4

1 回答 1

36

下面是一个基本用法的例子:

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

int main(){
  std::string str = "hellooooooooo";
  std::string newtext = "o Bob";
  boost::regex re("ooooooooo");
  std::cout << str << std::endl;

  std::string result = boost::regex_replace(str, re, newtext);
  std::cout << result << std::endl;
}

输出

你好啊啊啊啊

你好鲍勃

确保您包含<boost/regex.hpp>并链接到 boost_regex 库。

于 2012-07-04T02:33:31.190 回答