我无法从TR1工作中获得regex_replace。
#include <iostream>
#include <string>
#include <tr1/regex>
int main()
{
std::string str = "Hello world";
std::tr1::regex rx("world");
std::string replacement = "planet";
std::string str2 = std::tr1::regex_replace(str, rx, replacement);
std::cout << str2 << "\n";
}
str2是一个空字符串。