8

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;
}

私は次のようにコンパイルして実行します:

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

gdb のバックトレースを見ると、スローされた例外がregex_constants::error_brack.

4

1 に答える 1

5

ヒントをありがとう。g++ の正規表現コードが不完全だとは思いもしませんでした。

それまでの間、この古い StackOverflow の質問を参照する必要があると思います。

C++: どの正規表現ライブラリを使用すればよいですか?

于 2013-03-28T00:16:58.380 に答える