Posix 字元類 p{ASCII} Java 正則表示式。


該類匹配 ASCII 字元,即 \x00-\x7F。

示例

 動態演示

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Example {
   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{ASCII}]";
      //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 non-ASCII characters in the given string: "+count);
   }
}

輸出

Enter a string
why do we fall
Number of non-ASCII characters in the given string: 1

更新於: 2020 年 1 月 9 日

645 次瀏覽

開啟你的 職業生涯

完成課程即可獲得認證

馬上開始
廣告
© . All rights reserved.