首頁  >  文章  >  Java  >  貪婪量詞在Java正規表示式中的應用

貪婪量詞在Java正規表示式中的應用

WBOY
WBOY轉載
2023-08-19 11:41:20882瀏覽

貪婪量詞在Java正規表示式中的應用

貪婪量詞是預設的量詞。如果沒有匹配發生,貪婪量詞會盡可能地從輸入字串中匹配最多的內容(最長的匹配),並且在匹配失敗時會保留最後一個字元並重新匹配。以下是貪婪量詞的列表:

##re* 符合零個或多個出現。 re?符合零個或一個出現。 re 符合一個或多個出現。 re{n}精確地比對 n 次出現。 re{n, }至少符合 n 次出現。 re{n, m}符合至少 n 次且最多 m 次出現。
量詞 描述

範例

在下面的Java 範例中,我們嘗試匹配一個或多個數字,我們的輸入字串是45545,雖然值4、45、455 等都是符合條件的,但由於我們使用了貪婪量詞,它會匹配最長的可能值。

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Test {
   public static void main(String[] args) {
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter input text: ");
      String input = sc.nextLine();
      String regex = "[0-9]+";
      //Creating a pattern object
      Pattern pattern = Pattern.compile(regex);
      //Matching the compiled pattern in the String
      Matcher matcher = pattern.matcher(input);
      System.out.println(“”Matched text: );
      while (matcher.find()) {
         System.out.println(matcher.group());
      }
   }
}

輸出

Enter input text:
Matched text:
45545

以上是貪婪量詞在Java正規表示式中的應用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除