Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java Regex에서 match()와 find()의 차이점은 무엇입니까?

<시간/>

java.util.regex.Matcher 클래스는 다양한 일치 작업을 수행하는 엔진을 나타냅니다. 이 클래스에 대한 생성자가 없습니다. java.util.regex.Pattern 클래스의 match() 메소드를 사용하여 이 클래스의 객체를 생성/얻을 수 있습니다.

둘 다 일치()찾기() Matcher 클래스의 메서드는 입력 문자열의 정규식에 따라 일치 항목을 찾으려고 합니다. 일치하는 경우 둘 다 true를 반환하고 일치하지 않으면 두 메서드 모두 false를 반환합니다.

가장 큰 차이점은 match() 메서드가 주어진 입력의 전체 영역을 일치시키려고 한다는 것입니다. 즉, 한 줄에서 숫자를 검색하려는 경우 이 메서드는 입력이 영역의 모든 줄에 숫자가 있는 경우에만 true를 반환합니다.

예시 1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Test {
   public static void main(String[] args) {
      String regex = "(.*)(\\d+)(.*)";
      String input = "This is a sample Text, 1234, with numbers in between. "
         + "\n This is the second line in the text "
         + "\n This is third line in the text";
      //Creating a pattern object
      Pattern pattern = Pattern.compile(regex);
      //Creating a Matcher object
      Matcher matcher = pattern.matcher(input);
      if(matcher.matches()) {
         System.out.println("Match found");
      } else {
         System.out.println("Match not found");
      }
   }
}

출력

Match not found

반면 find() 메서드는 패턴과 일치하는 다음 부분 문자열을 찾으려고 시도합니다. 즉, 해당 영역에서 하나 이상의 일치 항목이 발견되면 이 메서드는 true를 반환합니다.

다음 예를 고려하면 중간에 숫자가 있는 특정 행을 일치시키려고 합니다.

예시 2

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Test {
   public static void main(String[] args) {
      String regex = "(.*)(\\d+)(.*)";
      String input = "This is a sample Text, 1234, with numbers in between. "
         + "\n This is the second line in the text "
         + "\n This is third line in the text";
      //Creating a pattern object
      Pattern pattern = Pattern.compile(regex);
      //Creating a Matcher object
      Matcher matcher = pattern.matcher(input);
      //System.out.println("Current range: "+input.substring(regStart, regEnd));
      if(matcher.find()) {
         System.out.println("Match found");
      } else {
         System.out.println("Match not found");
      }
   }
}

출력

Match found