我可以使用 Boost 库的 Xpressive 进行一些正则表达式替换,如下所示:
#include <iostream>
#include <boost/xpressive/xpressive.hpp>
void replace(){
std::string in("a(bc) de(fg)");
sregex re = +_w >> '(' >> (s1= +_w) >> ')';
std::string out = regex_replace(in,re,"$1");
std::cout << out << std::endl;
}
我需要的是用某个转换函数的结果替换捕获的部分,例如
std::string modifyString(std::string &in){
std::string out(in);
std::reverse(out.begin(),out.end());
return out;
}
所以上面提供的示例的结果将是cb gf。
您认为实现这一点的最佳方法是什么?
提前致谢!