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


Java java.util.regex.Matcher.groupCount()用法及代碼示例



描述

這個java.time.Matcher.hasTransparentBounds()方法查詢此匹配器的區域邊界的透明度。

聲明

以下是聲明java.time.Matcher.hasTransparentBounds()方法。

public boolean hasTransparentBounds()

返回值

如果此匹配器使用透明邊界,則為 true,否則為 false。

示例

下麵的例子展示了 java.time.Matcher.hasTransparentBounds() 方法的用法。

package com.tutorialspoint;

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);
      
      // get a matcher object
      Matcher matcher = pattern.matcher(INPUT);
      System.out.println("hasTransparentBounds():" + matcher.hasTransparentBounds());
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

hasTransparentBounds():false

相關用法


注:本文由純淨天空篩選整理自 java.util.regex.Matcher.groupCount() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。