Skip to content

Instantly share code, notes, and snippets.

@zhangxiaomu01
Created July 11, 2019 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zhangxiaomu01/579c520dd3448455f8cf5c2a1a9656a2 to your computer and use it in GitHub Desktop.
Save zhangxiaomu01/579c520dd3448455f8cf5c2a1a9656a2 to your computer and use it in GitHub Desktop.
#include<iostream>
#include<string>
#include<vector>
#include<regex>
using namespace std;
//regex_token_iterator: pointing to a sub match
int main() {
string str = "zhangxm01@gmail.com; zhan@163.com; zhan_j@yahoo.com";
regex e("([[:w:]]+)@([[:w:]]+)\.com");
//regex iterator
sregex_token_iterator pos(str.cbegin(), str.cend(), e);
//default constructor defines past-the-end iterator
sregex_token_iterator end;
for(; pos != end; ++pos){
//str() cannot have any parameters
cout << "Matched: " << pos->str() << endl;
cout << endl;
}
system("pause");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment