Computer >> Máy Tính >  >> Lập trình >> Java

Biểu thức chính quy a | b Metacharacter trong Java

Biểu thức con / siêu ký tự “ a | b ”Khớp với a hoặc b.

Ví dụ 1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "Hello|welcome";
      String input = "Hello how are you welcome to Tutorialspoint";
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(input);
      int count = 0;
      while(m.find()) {
         count++;
      }
      System.out.println("Number of matches: "+count);
   }
}

Đầu ra

Number of matches: 2

Ví dụ 2

Chương trình Java sau đây đọc giá trị giới tính từ người dùng và nó chỉ cho phép M (nam), F (Nữ) hoặc O (Khác).

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   public static void main( String args[] ) {
      //Regular expression to match M or, F or, O
      String regex = "M|F|O";
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter students gender:");
      String name = sc.nextLine();
      Pattern p = Pattern.compile(regex);
      Matcher m = p.matcher(name);
      if(m.matches()) {
         System.out.println("All OK");
      } else {
         System.out.println("Wrong Input");
      }
   }
}

Đầu ra 1

Enter students gender:
M
All OK

Đầu ra 2

Enter students gender:
male
Wrong Input