如何利用 Java RegEx 匹配非单词字符?


除英语字母(大写和小写)和数字(0 到 9)之外的所有字符都被视为非单词字符。可以使用元字符“\W”进行匹配。

示例 1

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();
      String regex = "^\W{5}";
      //Compiling the regular expression
      Pattern pattern = Pattern.compile(regex);
      //Retrieving the matcher object
      Matcher matcher = pattern.matcher(input);
      if(matcher.find()) {
         System.out.println("Match occurred");
      } else {
         System.out.println("Match not occurred");
      }
   }
}

输出 1

Enter a String
*&&^#
Match occurred

输出 2

Enter a String
hello
Match not occurred

示例 2

import java.util.Scanner;
public class RegexExample {
   public static void main( String args[] ) {
      String regex = "\W*";
      System.out.println("Enter input value: ");
      Scanner sc = new Scanner(System.in);
      String input = sc.nextLine();
      boolean bool = input.matches(regex);
      if(bool) {
         System.out.println("match occurred");
      } else {
         System.out.println("match not occurred");
      }
   }
}

输出

Enter input value:
#***
match occurred

更新时间: 2019 年 11 月 19 日

1000+ 次浏览

开启你的 职业生涯

通过完成此课程来获取认证

开始学习
广告
© . All rights reserved.