zoukankan      html  css  js  c++  java
  • 爬虫---正则表达式

    import java.io.BufferedReader;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;


    public class Test {
        public static void main(String[] args) {
          try {
            BufferedReader br = new BufferedReader(new FileReader("D:\新建文本文档 (2).txt"));          //跟据本地文件夹
            String line ="";
            while((line=br.readLine())!=null){
              parse(line);
            }
          } catch (FileNotFoundException e) {
            e.printStackTrace();
          } catch (IOException e) {
            e.printStackTrace();
          }
      }
        private static void parse(String line) {
          Pattern p = Pattern.compile("[\w[.-]]+@[\w[.-]]+\.[\w]+");          //根据正则表达式 表示邮件的形式
          Matcher m = p.matcher(line);
          while(m.find()){
            System.out.println(m.group());
          }
      }

    }

  • 相关阅读:
    WinForm 资源文件的使用
    php 常量
    netbean使用技巧
    netbeans 7安装xdebug调试php程序
    eclipse 开发技巧
    asp.net 获取客户机IP地址
    NameValueCollection详解
    Paramics插件编程进程间通讯
    Paramics API编程配置
    windows查询端口占用
  • 原文地址:https://www.cnblogs.com/kimyong/p/5850111.html
Copyright © 2011-2022 走看看