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("数値の合計: ")+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 input strings: ");
      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("桁を含む文字列: ");
      for(int i=0; i<5;i++) {
         //Matcherオブジェクトを生成します
         Matcher m = p.matcher(input[i]);
         if(m.matches()) {
            System.out.println(m.group());
         }
      }
   }
}

出力結果

test data
hello how are you 335
welcome to w3codebox
桁を含む文字列:
sample text 1
hello how are you 335