【发布时间】:2016-10-11 23:45:09
【问题描述】:
来自类似 perl 的正则表达式,我希望下面的代码在所有 8 种情况下都能匹配正则表达式。但事实并非如此。我错过了什么?
#include <iostream>
#include <regex>
#include <string>
using namespace std;
void check(const string& s, regex re) {
cout << s << " : " << (regex_match(s, re) ? "Match" : "Nope") << endl;
}
int main() {
regex re1 = regex("[A-F]+", regex::icase);
check("aaa", re1);
check("AAA", re1);
check("fff", re1);
check("FFF", re1);
regex re2 = regex("[a-f]+", regex::icase);
check("aaa", re2);
check("AAA", re2);
check("fff", re2);
check("FFF", re2);
}
使用 gcc 5.2 运行:
$ g++ -std=c++11 test.cc -o test && ./test
aaa : Match
AAA : Match
fff : Nope
FFF : Match
aaa : Match
AAA : Match
fff : Match
FFF : Nope
【问题讨论】:
标签: c++ regex c++11 gcc gcc5.2