java.util.regex.Matcher.replaceFirst() 方法
描述
java.util.regex.Matcher.replaceFirst(String replacement) 方法用给定的替换字符串替换与模式匹配的输入序列的第一个子序列。
声明
以下是 java.util.regex.Matcher.replaceFirst(String replacement) 方法的声明。
public String replaceFirst(String replacement)
参数
replacement − 替换字符串。
返回值
通过替换字符串替换第一个匹配子序列构造的字符串,根据需要替换捕获的子序列。
示例
下面的例子展示了 java.util.regex.Matcher.replaceFirst(String replacement) 方法的用法。
package com.tutorialspoint; import java.util.regex.Matcher; import java.util.regex.Pattern; public class MatcherDemo { private static String REGEX = "dog"; private static String INPUT = "The dog says meow " + "All dogs say meow."; private static String REPLACE = "cat"; public static void main(String[] args) { Pattern pattern = Pattern.compile(REGEX); // get a matcher object Matcher matcher = pattern.matcher(INPUT); INPUT = matcher.replaceFirst(REPLACE); System.out.println(INPUT); } }
让我们编译并运行上面的程序,这将产生以下结果 −
The cat says meow All dogs say meow.