当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Matcher useTransparentBounds()用法及代码示例


Matcher 类的 useTransparentBounds(boolean b) 方法用于设置此匹配器的区域边界的透明度。如果该参数为 true,则它将设置此匹配器使用透明边界,否则将使用不透明边界。默认情况下,匹配器使用不透明边界。

用法

public Matcher useTransparentBounds(boolean b)

参数

b- 一个布尔值,指示是使用不透明区域还是透明区域

返回

这个匹配器

自从

1.5

例子1

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseTransparentBoundsExample1{

	   public static void main(String[] args) {
	      Pattern p = Pattern.compile("^<abc>");
	      Matcher m = p.matcher("<abc><xyz>"); 
	      m.useTransparentBounds(true);
	      System.out.println(m.hasTransparentBounds());
	   }
}

上述程序的输出:

true

例子2

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseTransparentBoundsExample2 {

	   public static void main(String[] args) {
	      Pattern p = Pattern.compile("^<abc>");
	      Matcher m = p.matcher("<abc><xyz><abc>"); 
	      m.useTransparentBounds(true);
	      System.out.println(m.hasTransparentBounds());
	  while(m.find())
	  {
		  System.out.println("  "+m);
	  }
	 }
}

上述程序的输出:

true
  java.util.regex.Matcher[pattern=^<abc> region=0,15 lastmatch=<abc>]

例子3

import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseTransparentBoundsExample3 {
   public static void main(String[] args) {
	      Pattern p = Pattern.compile("<abc>*");
	      Matcher m = p.matcher("<abc><xyz><abc>"); 
	      m.useTransparentBounds(false);
	      System.out.println(m.hasTransparentBounds());
	  while(m.find())
	  {
		  System.out.println("  "+m);
	  }
	 }
}

上述程序的输出:

true
  java.util.regex.Matcher[pattern=<abc>* region=0,15 lastmatch=<abc>]
  java.util.regex.Matcher[pattern=<abc>* region=0,15 lastmatch=<abc>]




相关用法


注:本文由纯净天空筛选整理自 Java Matcher useTransparentBounds() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。