您好,登錄后才能下訂單哦!
這篇文章給大家介紹如何在Java項目中的鏈接地址怎么利用正則表達式獲取,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、正則表達式中Matcher中find()
方法的應用。
2、String對象中的 replaceAll(String regex,String replacement)
方法的使用。通過這個方法去除了不必要的字符串,從而得到了需要的網址和鏈接文字
例1.超簡單的
String content = "<a href="URL" rel="external nofollow" >"; String pattern= "href="([^" rel="external nofollow" ]*)""; Pattern p = Pattern.compile(pattern, 2 | Pattern.DOTALL); Matcher m = p.matcher(content); if(m.find()) { System.out.println("url="+m.group(1)); }
例2.上面只能獲取帶有雙“號的a標題中的url,下面我們加以改進可以獲取任何狀態下的a標題url
package com.gong.example; import Java.util.regex.Matcher; import java.util.regex.Pattern; public class Simple { public static void main(String[] args){ String input="<a href = "https://www.jb51.net" target="_blank" >www.jb51.net</a>" + "<a href = 'http://www.163.com' target='_blank' >www.163.com</a> " + "<a href=http://www.yahoo.com target=_blank >www.yahoo.com</a>"; String patternString = "\s*(?i)href\s*=\s*("([^"]*")|'[^']*'|([^'">\s]+))"; //href Pattern pattern = Pattern.compile(patternString, Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher(input); while (matcher.find()) { String link=matcher.group(); System.out.println(link); link=link.replaceAll("href\s*=\s*(['|"]*)", ""); System.out.println("--"+link); link=link.replaceAll("['|"]", ""); System.out.println("---"+link); } } }
例3.我們還可以利用它進行升級獲取 獲取網址和鏈接文字哦。
/* 功能說明:分析字符串s,提取s里面的超鏈接和鏈接文字 */ import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegTest { public static void main(String[] args) { //String s="<p id=km> <a href=http://down.yourweb.com>空間</a> | <a "; String s="</p><p style=height:14px><a href=http://mb.yourweb.com>企業推廣</a> | <a href=http://code.yourweb.com>搜索風云榜</a> | <a href=/home.html>關于百度</a> | <a href=http://www.yourweb.com>About Baidu</a></p><p id=b>©2008 Baidu <a href=http://www.yourweb.com>使用百度前必讀</a> <a href=http://www.miibeian.gov.cn target=_blank>京ICP證03xxxx號</a> <a href=https://www.jb51.net><img src=/get_pic/2013/11/22/20131122031447947.gif></a></p></center></body></html><!--543ff95f18f36b11-->"; String regex="<a.*?/a>"; //String regex = "<a.*>(.*)</a>"; Pattern pt=Pattern.compile(regex); Matcher mt=pt.matcher(s); while(mt.find()) { System.out.println(mt.group()); System.out.println(); String s2=">.*?</a>";//標題部分 String s3="href=.*?>"; Pattern pt2=Pattern.compile(s2); Matcher mt2=pt2.matcher(mt.group()); while(mt2.find()) { System.out.println("標題:"+mt2.group().replaceAll(">|</a>","")); } Pattern pt3=Pattern.compile(s3); Matcher mt3=pt3.matcher(mt.group()); while(mt3.find()) { System.out.println("網址:"+mt3.group().replaceAll("href=|>","")); } } } }
關于如何在Java項目中的鏈接地址怎么利用正則表達式獲取就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。