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

Biểu thức chính quy \ Z Metacharacter trong Java

Biểu thức con / siêu ký tự “\ Z” khớp với phần cuối của toàn bộ chuỗi ngoại trừ dấu chấm cuối dòng cuối cùng được phép.

Ví dụ 1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "Tutorialspoint\\z";
      String input = "Hi how are you 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: 1

Ví dụ 2

Chương trình Java sau đây xác minh xem văn bản đầu vào đã cho có kết thúc bằng chữ số hay không.

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Data {
   public static void main( String args[] ) {
      String regex = "[0-9]\\z";
      String input = "Hi how are you \n this is sample text \n this is third line 554";
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      if(m.find()) {
         System.out.println("Given input ends with a digit");
      } else {
         System.out.println("Given input doesn’t end with a digit");
      }
   }
}

Đầu ra

Given input ends with a digit