1

我有以下代码:

#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.commyemail@gmail.com我得到yahoo.cgmail.

4

1 回答 1

3

regex_match用于检查字符串是否符合精确模式。

regex_search根据您的要求或您的模式必须涵盖所有可能性,您可以使用. 看看正则表达式

于 2013-01-02T09:18:31.097 回答