這篇文章將為大家詳細(xì)講解有關(guān)Java中正則表達式怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
我們提供的服務(wù)有:成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、濉溪ssl等。為上千企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的濉溪網(wǎng)站制作公司
Java 正則表達式的使用,具體內(nèi)容如下所示:
java.util.regex.Pattern java.util.regex.Matcher
1.Match
match 是從字符串最頭部開始匹配,一直到結(jié)束,需要匹配整個串
String content = "Welcome, bob!"; content.match("bob"); //false content.match(".*bob") //false content.match(".*bob.*") //true String str="test@yahoo.com.cn"; Pattern pattern = Pattern.compile("[\\w\\.\\-]+@([\\w\\-]+\\.)+[\\w\\-]+",Pattern.CASE_INSENSITIVE); Matcher matcher = pattern.matcher(str); boolean a = matcher.matches(); //匹配的時候返回true
2.Find
boolean b = matcher.find(); //包含正則匹配的串為true // 找到所有匹配的串 while(matcher.find()) { String extracted = matcher.group(0) }
3.Replace
matcher.replaceFirst("") matcher.replaceAll("");
4.Group
group(0) 代表整個表達式 String line = "#星座運勢#20171013"; String pattern = "\\#(\\p{L}*)\\#(\\d+)"; //\p{L} 匹配 unicode any kind of letter from any language // 創(chuàng)建 Pattern 對象 Pattern r = Pattern.compile(pattern); // 現(xiàn)在創(chuàng)建 matcher 對象 Matcher m = r.matcher(line); if (m.find( )) { System.out.println("Found value: " + m.group(0) ); // "#星座運勢#20171013" System.out.println("Found value: " + m.group(1) ); // 星座運勢 System.out.println("Found value: " + m.group(2) ); // 20171013 } else { System.out.println("NO MATCH"); }
關(guān)于“Java中正則表達式怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。