正则表达式抓取网页中的邮箱地址

前端之家收集整理的这篇文章主要介绍了正则表达式抓取网页中的邮箱地址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近为了给博友分享资源,不得不利用一下了。下次再谈怎么自动发送带附件的邮件到目标邮箱地址。

代码非常简单 :把网页源代码copy到new.txt文件下就OK了。

import java.io.*;
import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;


public class getEmail {

	public static void main(String[] args) throws Exception {
		FileReader fr = new FileReader("E:\\new.txt");
		BufferedReader bf = new BufferedReader(fr);
		String str = "";
		StringBuilder strb = new StringBuilder();
		while((str = bf.readLine()) != null) {
			strb.append(str);
			str = "";
		}
		Pattern p = Pattern.compile("\\w{3,20}@\\w+\\.(com|gov|net|org)");
		Matcher m = p.matcher(strb);
		while(m.find()) {
			System.out.println(m.group());
		}

	}

}
原文链接:https://www.f2er.com/regex/360974.html

猜你在找的正则表达式相关文章