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

Các lớp ký tự Posix \ p {Lu} Java regex

Lớp \ p {Lu} này khớp với các chữ cái viết hoa.

Ví dụ 1

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example1 {
   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.nextLine();
      //Regular expression
      String regex = "\\p{Lu}";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex);
      //Retrieving the matcher object
      Matcher matcher = pattern.matcher(input);
      int count = 0;
      while(matcher.find()) {
         count++;
      }
      System.out.println("Number of capital characters: "+count);
   }
}

Đầu ra

Enter a string
Hello HOW are YOU
Number of capital characters: 7

Ví dụ 2

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example2 {
   public static void main(String args[]) {
      //Regular expression to match lower case letters
      String regex = "^.*\\p{Lu}.*$";
      //Getting the input data
      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();
      }
      //Creating a Pattern object
      Pattern p = Pattern.compile(regex);
      System.out.println("Strings with Latin characters: ");
      for(int i=0; i<5;i++) {
         //Creating a Matcher object
         Matcher m = p.matcher(input[i]);
         if(m.matches()) {
            System.out.println(m.group());
         }
      }
   }
}

Đầu ra

Enter 5 input strings:
hello how are you
This is SAMPLE text
123 465
TEST DATA
#$% &# *#
Strings with Latin characters:
This is SAMPLE text
TEST DATA