정규식을 사용하여 문자열의 패턴 인덱스 가져 오기


답변:


166

Matcher 사용 :

public static void printMatches(String text, String regex) {
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(text);
    // Check all occurrences
    while (matcher.find()) {
        System.out.print("Start index: " + matcher.start());
        System.out.print(" End index: " + matcher.end());
        System.out.println(" Found: " + matcher.group());
    }
}

5

Jean Logeart의 특별판 답변

public static int[] regExIndex(String pattern, String text, Integer fromIndex){
    Matcher matcher = Pattern.compile(pattern).matcher(text);
    if ( ( fromIndex != null && matcher.find(fromIndex) ) || matcher.find()) {
        return new int[]{matcher.start(), matcher.end()};
    }
    return new int[]{-1, -1};
}

-2
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class RegexMatches
{
    public static void main( String args[] ){

      // String to be scanned to find the pattern.
      String line = "This order was places for QT3000! OK?";
      String pattern = "(.*)(\\d+)(.*)";

      // Create a Pattern object
      Pattern r = Pattern.compile(pattern);

      // Now create matcher object.
      Matcher m = r.matcher(line);
      if (m.find( )) {
         System.out.println("Found value: " + m.group(0) );
         System.out.println("Found value: " + m.group(1) );
         System.out.println("Found value: " + m.group(2) );
      } else {
         System.out.println("NO MATCH");
      }
   }
}

결과

Found value: This order was places for QT3000! OK?
Found value: This order was places for QT300
Found value: 0

2
반대 할 때 댓글을 남겨주세요! 그것은 OP 요청으로,하지 않는 한 나는이을 downvoted 된 가정 @Shadow, 경기의 인덱스 ... 부여
엘 Ronnoco

4
좋아요 ...이 답변은 질문에 대한 답이 아니기 때문에 반대표를 던졌습니다.

3
정규식도 잘못되었습니다. 첫 번째는 (.*)원래 전체 문자열 을 소비 (\d+)한 다음 한 자릿수를 일치 시킬 수있을만큼 충분히 뒤로 물러나고 두 번째 (.*)는 남은 것을 소비합니다. 특히 유용한 결과는 아닙니다. 오, 그리고 당신 group(3)은 당신의 결과에서 빠졌습니다.
앨런 무어

2
인덱스를 제공하지 않습니다
piratemurray
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.