gpt4 book ai didi

c++ - 正则表达式 ("(abc|aa.*|bb.*)") 与正则表达式 ("(aa.*|bb.*|cc.*)");

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:53:22 25 4
gpt4 key购买 nike

<分区>

我在 c++11 (ubuntu 14.4 ,gcc 4.8.2) 中使用正则表达式时遇到一个奇怪的问题

#include <iostream>
#include <regex>
using namespace std;
int main()
{
regex r("(abc|aa.*|bb.*)");
cout<<regex_match("bb11",r)<<endl; //return false
cout<<regex_match("aa11",r)<<endl; //return true
cout<<regex_match("abc",r)<<endl; //return true
return 0;
}

同时

int main()
{
regex r("(aa.*|bb.*|cc.*)");
cout<<regex_match("bb11",r)<<endl; //return true
cout<<regex_match("aa11",r)<<endl; //return true
cout<<regex_match("abc",r)<<endl; //return false
return 0;
}

我想知道为什么“bb11”得到不同的结果?

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