我有这些变量:
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);
但它说该函数不存在,我猜目前参数不正确。