您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)Java中正則表達式怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
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)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。