(?: re) 子表示式在 Java 正則表示式中


子表示式/元字元“(?: re)”對正則表示式進行分組,但不記住匹配的文字。

示例

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PatternExample {
   public static void main(String args[]) {
      //Reading String from user
      System.out.println("Enter a String");
      Scanner sc = new Scanner(System.in);
      String input = sc.next();
      String regex = "(?:[0-9])";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex);
      //Retrieving the matcher object
      Matcher matcher = pattern.matcher(input);
      //verifying whether match occurred
      boolean bool = matcher.find();
      if(bool) {
         System.out.print("Match found");
      } else {
         System.out.print("Match not found");
      }
   }
}

輸出

Enter a String
9848022338
Match found

更新日期:2019-11-19

150 次檢視

開啟您的職業

完成課程獲得認證

開始吧
廣告
© . All rights reserved.