首頁 > Java > java教程 > Java正規表示式程序,用於匹配括號'('或')'

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

WBOY
發布: 2023-08-28 09:41:05
轉載
1157 人瀏覽過

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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板