Computer >> Máy Tính >  >> Lập trình >> Java

Biểu thức chính quy re {n} Metacharacter trong Java

Biểu thức con / siêu ký tự “re {n}” khớp chính xác n số lần xuất hiện của biểu thức trước.

Ví dụ 1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "to{1}";
      String input = "Welcome to Tutorialspoint";
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      while(m.find()) {
         count++;
      }
      System.out.println("Number of matches: "+count);
   }
}

Đầu ra

Number of matches: 2

Ví dụ 2

Chương trình Java sau đây đọc giá trị tuổi từ người dùng, nó chỉ cho phép một số có hai chữ số.

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\\d{2}";
      System.out.println("Enter your age:");
      Scanner sc = new Scanner(System.in);
      String input = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      if(m.matches()) {
         System.out.println("Age value accepted");
      } else {
         System.out.println("Age value not accepted");
      }
   }
}

Đầu ra 1

Enter your age:
25
Age value accepted

Đầu ra 2

Enter your age:
2252
Age value not accepted

Đầu ra 3

Enter your age:
twenty
Age value not accepted