預定義字元類 \W 匹配



說明

字元類 \s 匹配任何非單詞字元。

示例

以下示例顯示了預定義字元類匹配的用法。

package com.tutorialspoint;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class PredefinedCharacterClassDemo {
   private static final String REGEX = "\\W";
   private static final String INPUT = "dbcaABb12\tc";

   public static void main(String[] args) {
      // create a pattern
      Pattern  pattern = Pattern.compile(REGEX);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT); 

      while(matcher.find()) {
         //Prints the start index of the match.
         System.out.println("Match String start(): "+matcher.start());
      }
   }
}

讓我們編譯並執行上述程式,這將產生以下結果 −

Match String start(): 9
javaregex_predefined_character_classes.htm
廣告