Java中正則Matcher類的matches()、lookAt()和find()的區別

來源:互聯網
上載者:User

標籤:

在Matcher類中有matches、lookingAt和find都是匹配目標的方法,但容易混淆,整理它們的區別如下:

  • matches:整個匹配,只有整個字元序列完全符合成功,才返回True,否則返回False。但如果前部分匹配成功,將移動下次匹配的位置。
  • lookingAt:部分匹配,總是從第一個字元進行匹配,匹配成功了不再繼續匹配,匹配失敗了,也不繼續匹配。
  • find:部分匹配,從當前位置開始匹配,找到一個匹配的子串,將移動下次匹配的位置。
  • reset:給當前的Matcher對象配上個新的目標,目標是就該方法的參數;如果不給參數,reset會把Matcher設到當前字串的開始處。

使用範例程式碼來展示他們的區別更清晰明了:

package net.oseye;import java.util.regex.Matcher;import java.util.regex.Pattern;public class IOTest {public static void main(String[] args){Pattern pattern = Pattern.compile("\\d{3,5}");String charSequence = "123-34345-234-00";Matcher matcher = pattern.matcher(charSequence);//雖然匹配失敗,但由於charSequence裡面的"123"和pattern是匹配的,所以下次的匹配從位置4開始print(matcher.matches());//測試匹配位置matcher.find();print(matcher.start());//使用reset方法重設匹配位置matcher.reset();//第一次find匹配以及匹配的目標和匹配的起始位置print(matcher.find());print(matcher.group()+" - "+matcher.start());//第二次find匹配以及匹配的目標和匹配的起始位置print(matcher.find());print(matcher.group()+" - "+matcher.start());//第一次lookingAt匹配以及匹配的目標和匹配的起始位置print(matcher.lookingAt());print(matcher.group()+" - "+matcher.start());//第二次lookingAt匹配以及匹配的目標和匹配的起始位置print(matcher.lookingAt());print(matcher.group()+" - "+matcher.start());}public static void print(Object o){System.out.println(o);}}

輸出結果:

false4true123 - 0true34345 - 4true123 - 0true123 - 0

Java中正則Matcher類的matches()、lookAt()和find()的區別

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.