方法java.time.Matcher.pattern()返回Matcher匹配的模式。此方法不接受任何参数。
一个程序演示了Java正则表达式中的Matcher.pattern()方法,如下所示-
import java.util.regex.Matcher; import java.util.regex.Pattern; public class Demo { public static void main(String args[]) { String regex = "Apple"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher("AppleIsAFruit"); System.out.println("Pattern: " + m.pattern()); } }
上面程序的输出如下-
Pattern: Apple
现在让我们了解上面的程序。
使用Matcher.pattern()方法返回匹配器匹配的模式,然后进行打印。演示这的代码片段如下-
String regex = "Apple"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher("AppleIsAFruit"); System.out.println("Pattern: " + m.pattern());