English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Java에서 정규 표현식 "\Z" 유형 문자

부표현식/한 문자열의 끝에 "\ Z" 문자열과 일치하지만, 허용되는 마지막 행 표시자를 제외합니다.

예제1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {}}
   public static void main( String args[] ) {
      String regex = "w3codebox\\z";
      String input = "Hi how are you welcome to w3codebox";
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      while(m.find()) {
         count++;
      }
      System.out.println("Number of matches: ");+count);
   }
}

출력 결과

일치 횟수: 1

예제2

다음 Java 프로그램은 주어진 입력 텍스트가 숫자로 끝나는지 확인합니다.

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");
      }
   }
}

출력 결과

주어진 입력이 숫자로 끝나는 경우