gpt4 book ai didi

c++ - 与 c++11 正则表达式不匹配

转载 作者:IT老高 更新时间:2023-10-28 21:43:59 26 4
gpt4 key购买 nike

为什么这在 g++ (Debian 4.6.3-1) 4.6.3 或 clang 版本 3.2 (trunk 159457) 中找不到匹配项

#include <iostream>
#include <string>
#include <regex>

using namespace std;

int main()
{
string line("test");
regex pattern("test",regex_constants::grep);
smatch result;

bool ret(false);
ret = regex_search(line,result,pattern);
cout << boolalpha << ret << endl;
cout << result.size() << endl;
return 0 ;
}

输出

false
0

最佳答案

因为<regex>尚未在 libstdc++ 中实现,如文档 here 所述(§28)。

现在,请使用 Boost.XpressiveBoost.Regex而是。

关于c++ - 与 c++11 正则表达式不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11269766/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com