當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。