java正則表達式簡略運用。本站提示廣大學習愛好者:(java正則表達式簡略運用)文章只能為提供參考,不一定能成為您想要的結果。以下是java正則表達式簡略運用正文
一:抓取網頁中的Email地址
應用正則表達式婚配網頁中的文本
[\\w[.-]]+@[\\w[.-]]+\\.[\\w]+
將網頁內容朋分提取
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 EmailSpider { public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new FileReader("C:\\emailSpider.html")); 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()); } } }
打印成果:
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
如今你找到這麼多郵箱地址,用上JavaMail的常識,你可以群發渣滓郵件了,呵呵!!!
二:代碼統計
import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; public class CodeCounter { static long normalLines = 0;//正常代碼行 static long commentLines = 0;//正文行 static long whiteLines = 0;//空白行 public static void main(String[] args) { //找到某個文件夾,該文件夾上面在沒有文件夾,這裡沒有寫遞歸處置不在統一文件夾的文件 File f = new File("E:\\Workspaces\\eclipse\\Application\\JavaMailTest\\src\\com\\java\\mail"); File[] codeFiles = f.listFiles(); for(File child : codeFiles){ //只統計java文件 if(child.getName().matches(".*\\.java$")) { parse(child); } } System.out.println("normalLines:" + normalLines); System.out.println("commentLines:" + commentLines); System.out.println("whiteLines:" + whiteLines); } private static void parse(File f) { BufferedReader br = null; //表現能否為正文開端 boolean comment = false; try { br = new BufferedReader(new FileReader(f)); String line = ""; while((line = br.readLine()) != null) { //去失落正文符/*後面能夠湧現的空白 line = line.trim(); //空行 由於readLine()將字符串掏出來時,曾經去失落了換行符\n //所以不是"^[\\s&&[^\\n]]*\\n$" if(line.matches("^[\\s&&[^\\n]]*$")) { whiteLines ++; } else if (line.startsWith("/*") && !line.endsWith("*/")) { //統計多行/*****/ commentLines ++; comment = true; } else if (line.startsWith("/*") && line.endsWith("*/")) { //統計一行/**/ commentLines ++; } else if (true == comment) { //統計*/ commentLines ++; if(line.endsWith("*/")) { comment = false; } } else if (line.startsWith("//")) { commentLines ++; } else { normalLines ++; } } } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } finally { if(br != null) { try { br.close(); br = null; } catch (IOException e) { e.printStackTrace(); } } } } }
以上就是針對java正則表達式的簡略運用,願望對年夜家的進修Java正則表達式有所贊助。