提问者:小点点

在字符串中查找电子邮件[重复]


我正在尝试从一个字符串中获取电子邮件,如下所示:

"*** test@gmail.com

private static Pattern p = Pattern.compile("(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$)");

上面的代码可以获得一封电子邮件。

我怎样才能得到所有?


共2个答案

匿名用户

尝试

    String s = "*** test@gmail.com&&^ test2@gmail.com((& ";
    Matcher m = Pattern.compile("[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+").matcher(s);
    while (m.find()) {
        System.out.println(m.group());
    }

匿名用户

只需删除^$锚点。