貪婪量詞是預設的量詞。如果沒有匹配發生,貪婪量詞會盡可能地從輸入字串中匹配最多的內容(最長的匹配),並且在匹配失敗時會保留最後一個字元並重新匹配。以下是貪婪量詞的列表:
量詞 | 描述 |
---|---|
符合零個或多個出現。 | |
符合零個或一個出現。 | |
符合一個或多個出現。 | |
精確地比對 n 次出現。 | |
至少符合 n 次出現。 | |
符合至少 n 次且最多 m 次出現。 |
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中文網其他相關文章!