正则表达式无法匹配简单的字符串

时间:2015-11-19 14:02:30

标签: c++ regex gnu

GNU正则表达式无法匹配

string st = "ABCDAZEA";
cout<<"S:\t"<<st<<endl;
std::regex  expr("[A-Z]+", std::regex::extended );
std::smatch matches;
std::regex_search(st, matches, expr);
cout<<"found "<<matches.size()<<endl;
fflush (stdout);

我的代码有什么问题?

0 个答案:

没有答案