我有以下代码:
#include <regex>
#include <iostream>
#include <string>
int main()
{
std::tr1::regex rx("(\\w+)(\\.|_)?(\\w*)@(\\w+)(\\.(\\w+))+");
std::string s;
std::getline(std::cin,s);
if(regex_match(s.begin(),s.end(),rx))
{
std::cout << "Matched!" << std::endl;
}
}
如果正则表达式类似于"myemail@domain.com"
但是如果我尝试"myemail@domain.com:anothermail@domain.com:useless string:blah blah"
,那么效果很好
它失败!
我可以做些什么来匹配有效字符串(最终打印出找到的字符串,只有匹配的部分不是所有字符串)?
我以某种方式取得了成功,但是对于一些REGEX模式,它失败了:
#include <regex>
#include <iostream>
#include <string>
int main () {
std::string str("mymail@yahoo.com;lslsls;myemail@gmail.com");
std::tr1::regex rx("[a-zA-Z0-9_\\.]+@([a-zA-Z0-9\\-]+\\.)+[a-zA-Z]{2,4}");
std::tr1::sregex_iterator first(str.begin(), str.end(), rx);
std::tr1::sregex_iterator last;
for (auto it = first; it != last; ++it)
{
std::cout << "[Email] => " << it->str(1) << std::endl;
}
return 0;
}
此处获取mymail@yahoo.com
和myemail@gmail.com
我得到yahoo.c
和gmail.