java.util.regex.Pattern.quote() 方法



说明

java.util.regex.Pattern.quote(String s) 方法返回指定 String 的一个文字模式 String。

声明

以下是 java.util.regex.Pattern.quote(String s) 方法的声明。

public static String quote(String s)

参数

  • s − 要作为文字表示的字符串。

返回

一个文字串替换。

示例

以下示例展示了 java.util.regex.Pattern.quote(String s) 方法的用法。

package com.tutorialspoint;

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

public class PatternDemo {
   private static String REGEX = "dog$";
   private static String INPUT = "The dog$ says meow " + "All dog$ say meow.";
   private static String REPLACE = "cat";

   public static void main(String[] args) {
      Pattern pattern = Pattern.compile(Pattern.quote(REGEX));
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT); 
      INPUT = matcher.replaceAll(REPLACE);
      System.out.println(INPUT);
   }
}

让我们编译并运行以上程序,以下会生成结果 −

The cat says meow All cat say meow.
javaregex_pattern.htm
广告