Java 正则表达式的字符分类 p{javaMirrored}。


此字符分类 \p{javaMirrored} 匹配大写字母。此分类匹配在作为 java.lang.Character 类 isMirrored() 方法参数传递时返回 true 的字符。

示例 1

 实时演示

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexExample {
   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{javaMirrored}]";
      //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 mirrored characters: "+count);
   }
}

输出

Enter a string
<hello< (how are you) {welcome}
Number of mirrored characters: 6

示例 2

 实时演示

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
   public static void main(String args[]) {
      //Regular expression to match lower case letters
      String regex = "^\p{javaMirrored}+$";
      //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 mirrored 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());
         }
      }
   }
}

输出

Enter 5 input strings:
{Raju}
<RAMU>
rahman
radha
{}<>()[]
Strings with mirrored characters:
{}<>()[]

更新日期:2020 年 1 月 10 日

326 次浏览

开启你的 职业生涯

通过完成课程获取认证

开始学习
广告