首頁  >  文章  >  Java  >  Java正規表示式程序,用於匹配括號"("或")"

Java正規表示式程序,用於匹配括號"("或")"

WBOY
WBOY轉載
2023-08-28 09:41:051072瀏覽

Java正規表示式程序,用於匹配括號(或)

以下正規表示式接受括號的字串−

"^.*[\(\)].*$";
  • ^ matches the starting of the sentence.

  • .* Matches zero or more (any) characters.

  • #[\(\)] matching parenthesis.

  • #$ indicates the end of the sentence.

Example 1

 Live Demo

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class SampleTest {
   public static void main( String args[] ) {
      String regex = "^.*[\(\)].*$";
      //Reading input from user
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter data: ");
      String input = sc.nextLine();
      //Instantiating the Pattern class
      Pattern pattern = Pattern.compile(regex);
      //Instantiating the Matcher class
      Matcher matcher = pattern.matcher(input);
      //verifying whether a match occurred
      if(matcher.find()) {
         System.out.println("Input accepted");
      }else {
         System.out.println("Not accepted");
      }
   }
}

Output 1

Enter data:
sample(text) with parenthesis
Input accepted

Output 2

Enter data:
sample text
Not accepted

Example 2

 示範

import java.util.Scanner;
public class Example {
   public static void main(String args[]) {
      //Reading String from user
      System.out.println("Enter email address: ");
      Scanner sc = new Scanner(System.in);
      String e_mail = sc.nextLine();
      //Regular expression
      String regex = "^.*[\(\)].*$";
      boolean result = e_mail.matches(regex);
      if(result) {
         System.out.println("Valid match");
      } else {
         System.out.println("Invalid match");
      }
   }
}

Output 1

Enter email address:
sample(text) with parenthesis
Valid match

Output 2

Enter email address:
sample text
Invalid match

以上是Java正規表示式程序,用於匹配括號"("或")"的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除