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

Java에서의 정규 표현식 "re *기호

부표현식/기본 문자 " re *”와 이전 표현식의 0개 또는 여러 개의 일치。

예제1

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

출력 결과

일치 횟수: 4

예제2

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatchAllCharacters {
   public static void main( String args[] ) {
      String regex = "(.*)?(\\d+)";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter 5 입력 문자열: ");
      String input[] = new String[5];
      for (int i=0; i<5; i++) {
         input[i] = sc.nextLine();
      }
      //Pattern 객체를 생성합니다
      Pattern p = Pattern.compile(regex);
      System.out.println("digits를 포함하는 문자열: ");
      for(int i=0; i<5;i++) {
         //Matcher 객체를 생성합니다
         Matcher m = p.matcher(input[i]);
         if(m.matches()) {
            System.out.println(m.group());
         }
      }
   }
}

출력 결과

테스트 데이터
hello how are you 335
w에 오신 것을 환영합니다3codebox
digits를 포함하는 문자열:
sample text 1
hello how are you 335