RLHaides 2017-06-20 03:52 采纳率: 75%
浏览 1069
已采纳

c++中正则表达式匹配问题

我想匹配xxxx-xx-xx\xx:xx 此处x为数字
可是

 #include<iostream>
#include<string>
#include<regex>
using namespace std;
int main(){
  // regex str1("\\w{4}-\\w{2}-\\w{2}\\\w{2}:\\w{2}");
   regex str1("(\\w{4}-\\w{2}-\\w{2})\\(\\w{2}:\\w{2})");
   smatch flag1;
   string str;
   int index = 3;
   while(index--)
   {
    cin>>str;
    cout<<boolalpha<<regex_match(str,flag1,str1)<<endl;
   }

}

报错
可是

 #include<iostream>
#include<string>
#include<regex>
using namespace std;
int main(){
  // regex str1("\\w{4}-\\w{2}-\\w{2}\\\w{2}:\\w{2}");
   regex str1("(\\w{4}-\\w{2}-\\w{2})\\\\(\\w{2}:\\w{2})");
   smatch flag1;
   string str;
   int index = 3;
   while(index--)
   {
    cin>>str;
    cout<<boolalpha<<regex_match(str,flag1,str1)<<endl;
   }

}

正常匹配,这是为什么

展开全部

  • 写回答

1条回答 默认 最新

  • RLHaides 2017-06-20 03:56
    关注

    长期没碰c++,希望大家帮忙。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 加热反应炉PLC控制系统设计(相关搜索:梯形图)
  • ¥15 python 用Dorc包报错,我的写法和网上教的是一样的但是它显示无效参数,是什么问题
  • ¥15 指定IP电脑的访问设置
  • ¥30 matlab ode45 未发现警告,但是运行出错
  • ¥15 vscode platformio
  • ¥15 代写uni代码,app唤醒
  • ¥15 全志t113i启动qt应用程序提示internal error
  • ¥15 ensp可以看看嘛.
  • ¥80 51单片机C语言代码解决单片机为AT89C52是清翔单片机
  • ¥60 优博讯DT50高通安卓11系统刷完机自动进去fastboot模式
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部