正则表达式\在C++ 11中转义

Joh*_*ing 2 c++ regex c++11

这段代码没有返回任何东西,我是以错误的方式逃避w字符吗?

http://liveworkspace.org/code/3bRWOJ $ 38

#include <iostream>
#include <regex>
using namespace std;



int main()
{
    const char *reg_esp = "\w";  // List of separator characters.

// this can be done using raw string literals:
// const char *reg_esp = R"([ ,.\t\n;:])";

std::regex rgx(reg_esp); // 'regex' is an instance of the template class
                         // 'basic_regex' with argument of type 'char'.
std::cmatch match; // 'cmatch' is an instance of the template class
                   // 'match_results' with argument of type 'const char *'.
const char *target = "Unseen University - Ankh-Morpork";

// Identifies all words of 'target' separated by characters of 'reg_esp'.
if (std::regex_search(target, match, rgx)) {
    // If words separated by specified characters are present.

    const size_t n = match.size();
    for (size_t a = 0; a < n; a++) {
        std::string str (match[a].first, match[a].second);
        std::cout << str << "\n";
    }
}

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

Dan*_*rey 9

正则表达式应该包含\w,包括两个字符,\w,因此你的C++源代码应该包含"\\w"你需要转义反斜线.