java.time.Matcher.hasTransparentBounds()方法查询此匹配器的区域边界。
boolean hasTransparentBounds() - 声明
以下是 java.time.Matcher.hasTransparentBounds()方法的声明。
public boolean hasTransparentBounds()
boolean hasTransparentBounds() - 返回值
如果此匹配器使用Transparent范围,则为true,否则为false。
boolean hasTransparentBounds() - 示例
以下示例显示了java.time.Matcher.hasTransparentBounds()方法的用法。
package com.learnfk; import java.util.regex.Matcher; import java.util.regex.Pattern; public class MatcherDemo { private static String REGEX = "(a*b)(foo)"; private static String INPUT = "aabfooaabfooabfoob"; public static void main(String[] args) { Pattern pattern = Pattern.compile(REGEX); //获取匹配器对象 Matcher matcher = pattern.matcher(INPUT); System.out.println("hasTransparentBounds(): " + matcher.hasTransparentBounds()); } }
让无涯教程编译并运行以上程序,这将产生以下输出-
hasTransparentBounds(): false
参考链接
https://www.learnfk.com/javaregex/javaregex-matcher-hastransparentbounds.html
标签:java,Pattern,Matcher,无涯,hasTransparentBounds,boolean,matcher,Java From: https://blog.51cto.com/u_14033984/9041876