如何使用TR1中的regex_replace?

时间:2009-04-14 14:07:16

标签: c++ regex c++11

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

0 个答案:

没有答案