用正则表达式获取网页的email

前端之家收集整理的这篇文章主要介绍了用正则表达式获取网页的email前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public static void main(String[] args) { try { BufferedReader br=new BufferedReader(new FileReader("E:\\share\\10433633.html")); //读取文件 String line=""; while(br.readLine() != null){ Pattern p=Pattern.compile("[\\w[.-]]+@[\\w[.-]]+\\.[\\w]+"); //匹配email的表达式 Matcher m=p.matcher(line); while(m.find()){ System.out.println(m.group()); //分组打印出来 } } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } 原文链接:https://www.f2er.com/regex/362738.html

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