C++11 regex::icase 不一致的行为

C++11 regex::icase inconsistent behavior

来自类似 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

对于未来的用户,这已被确认为一个错误,并且它(和类似问题)已根据 this 线程从 8.1 开始解决。

我怀疑原作者参与了引起对此的关注,但我想也许我们可以关闭它。