为什么这个C++ 11 std :: regex示例会抛出一个regex_error异常?

Sté*_*ane 8 c++ regex g++ c++11

试图学习如何在C++ 11中使用新的std :: regex.但我尝试的例子是抛出一个我不明白的regex_error异常.这是我的示例代码:

#include <iostream>
#include <regex>

int main()
{
    std::string str = "xyzabc1xyzabc2xyzabc3abc4xyz";
    std::regex re( "(abc[1234])" ); // <-- this line throws a C++ exception

    // also tried to do this:
    // std::regex re( "(abc[1234])", std::regex::optimize | std::regex::extended );

    while ( true )
    {
        std::cout << "searching in " << str << std::endl;
        std::smatch match;
        std::regex_search( str, match, re );
        if ( match.empty() )
        {
            std::cout << "...no more matches" << std::endl;
            break;
        }
        for ( auto x : match )
        {
            std::cout << "found: " << x << std::endl;
        }
        str = match.suffix().str();
    }
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

我编译并运行如下:

g++ -g -std=c++11 test.cpp
./a.out
terminate called after throwing an instance of 'std::regex_error'
  what():  regex_error
Run Code Online (Sandbox Code Playgroud)

看一下gdb中的backtrace,我看到抛出的异常是regex_constants::error_brack.

Sté*_*ane 5

谢谢你的提示.不知道g ++中的正则表达式代码是不完整的.

与此同时,猜测我们将不得不参考这个旧的StackOverflow问题:

C++:我应该使用什么正则表达式库?

  • 第一个gcc支持在gcc 4.9中:http://stackoverflow.com/questions/23474121/what-part-of-regex-is-supported-by-gcc-4-9 (2认同)