Java 正则表达式 - 范例 - 字符 \0n 匹配



说明

字符 \0n 匹配八进制值为 0n 的字符 (0 ≤ n ≤ 7)。

示例

以下示例显示了使用字符匹配的内容。

package com.tutorialspoint;

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

public class CharactersDemo {
   private static final String REGEX = "\\07";
   private static final String INPUT = "abc\007abc";

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

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

让我们编译并运行上述程序,它将产生以下结果 -

Match String start(): 3
javaregex_characters.htm
广告