热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

轮子哥课程1

记录一段轮子哥写的大神级代码,以后参考#include#include#includeusingnamespa

记录一段轮子哥写的大神级代码,以后参考

#include
#include
#include using namespace std;int main()
{string line;regex email(R"(\w&#43;&#64;(\w&#43;\.)&#43;\w&#43;)");while(getline(cin,line)){smatch matches;auto current &#61; cbegin(line);auto last &#61; cend(line);while(current!&#61;last){if(regex_search(current,last,matches,email)){ssub_match match &#61; matches[0];current&#61;match.second;cout<else{break;}}}return 0;
}

这是处理正则匹配的代码&#xff0c;用到了简单的正则表达式&#xff0c;迭代器&#xff0c;还有基本的string操作。


推荐阅读
author-avatar
艺维网络传媒
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有