我有以下代码:
#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.