我无法从 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 是一个空字符串。