2

我无法从我的字符串中提取令牌值:“JOIN #ROOM\r\n” 我正在使用以下参数在 Mingw64 上编译我的代码:g++ tregex.cpp -o tregex.exe -std=gnu++11

我收到此错误,但由于某种原因不是我的例外:

此应用程序已请求运行时以不寻常的方式终止它。请联系应用程序的支持团队以获取更多信息。在抛出 'std::regex_error' 的实例后调用终止 what(): regex_error

这是我的代码:

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

//Tregex.cpp

int main(void) {
    regex rgx("[[:cntrl:]]");
    string str = "JOIN  #ROOM\r\n";
    smatch match;
    try{
        if(regex_search(str, match, rgx))
            for(auto token:match) cout << token <<"\n";
        cout<< endl;
    }
    catch(regex_error & e){
        if( e.code() == regex_constants::error_escape )
            cerr << "invalid escape character \n";
        else if( e.code() == regex_constants::error_stack )
            cerr << "regular expression is not big enough\n";
        else
            cerr << "exception caught: "<< e.what()<<"\n";
    }
    cin.get();
    return 0;
}
4

1 回答 1

0

FWIW,您的 C++ 代码没有任何问题,并且在我的 MacBook 上使用 Clang 和libc++可以完美运行。

正如上面的评论所指出的,<regex>这是在 LLVM 项目的 libc++ 中工作的功能之一,但在 GNU 项目的 libstdc++ 中从未正常工作。如果您的平台可用,您可以尝试切换到 libc++。

于 2013-06-25T22:29:19.147 回答