作者:艺维网络传媒 | 来源:互联网 | 2023-09-17 14:48
记录一段轮子哥写的大神级代码,以后参考
#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操作。