gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:42:57 26 4
gpt4 key购买 nike

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

最佳答案

对于 future 的用户,这被确认为一个错误,并且它(和类似的问题)根据 this 在 8.1 中得到解决。线程。

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

关于C++11 regex::icase 不一致行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37757863/

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