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

حرف "re *" في تعبيرات النصوص العادية في Java

التعبير الفرعي/الرمز "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);
   }
}

نتائج الإخراج

Number of matches: 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();
      }
      // create a Pattern object
      Pattern p = Pattern.compile(regex);
      System.out.println("Strings containing digits:");
      for(int i = 0; i < 5; i++) {
         // create a Matcher object
         Matcher m = p.matcher(input[i]);
         if(m.matches()) {
            System.out.println(m.group());
         }
      }
   }
}

نتائج الإخراج

بيانات الاختبار
hello how are you 335
welcome to w3codebox
Strings containing digits:
text sample 1
hello how are you 335
قد تعجبك