Matcher 類的 useAnchoringBounds(boolean b) 方法檢查此匹配器是否啟用了錨定邊界。錨定邊界默認為真值。如果啟用了錨定邊界,則輸入的開始和結束匹配 '^' 和 '$' 元字符,否則不匹配。
用法
public Matcher useAnchoringBounds(boolean b)
參數
b- 指示是否使用錨定邊界的布爾值。
返回
這個匹配器
自從
1.5
例子1
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseAnchoringBoundsExample1 {
public static void main(String[] args) {
Pattern p = Pattern.compile("^<foo>");
Matcher m = p.matcher("<foo><bar><foo>");
m.useAnchoringBounds(true);
System.out.println(m.hasAnchoringBounds());
}
}
上述程序的輸出:
true
例子2
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseAnchoringBoundsExample2 {
public static void main(String[] args) {
Pattern p = Pattern.compile("^<foo>");
Matcher m = p.matcher("<foo><bar><foo>");
m.useAnchoringBounds(true);
System.out.println(m.hasAnchoringBounds());
while(m.find())
{
System.out.println(""+m);
}
}
}
上述程序的輸出:
true java.util.regex.Matcher[pattern=^<foo> region=0,15 lastmatch=<foo>]
例子3
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class MatcheruseAnchoringBoundsExample3 {
public static void main(String[] args) {
Pattern p = Pattern.compile("<foo>*");
Matcher m = p.matcher("<foo><bar><foo>");
m.useAnchoringBounds(true);
System.out.println(m.hasAnchoringBounds());
while(m.find())
{
System.out.println(""+m);
}
}
}
上述程序的輸出:
true java.util.regex.Matcher[pattern=<foo>* region=0,15 lastmatch=<foo>] java.util.regex.Matcher[pattern=<foo>* region=0,15 lastmatch=<foo>]
相關用法
- Java Matcher useAnchoringBounds(boolean)用法及代碼示例
- Java Matcher useTransparentBounds()用法及代碼示例
- Java Matcher usePattern(Pattern)用法及代碼示例
- Java Matcher useTransparentBounds(boolean)用法及代碼示例
- Java Matcher region()用法及代碼示例
- Java Matcher matches()用法及代碼示例
- Java Matcher replaceAll(String)用法及代碼示例
- Java Matcher group(String)用法及代碼示例
- Java Matcher start(int)用法及代碼示例
- Java Matcher replaceFirst(String)用法及代碼示例
- Java Matcher lookingAt()用法及代碼示例
- Java Matcher quoteReplacement()用法及代碼示例
- Java Matcher end()用法及代碼示例
- Java Matcher appendTail(StringBuffer)用法及代碼示例
- Java Matcher hasAnchoringBounds()用法及代碼示例
- Java Matcher toMatchResult()用法及代碼示例
- Java Matcher replaceAll(Function)用法及代碼示例
- Java Matcher requireEnd()用法及代碼示例
- Java Matcher reset(CharSequence)用法及代碼示例
- Java Matcher appendReplacement(StringBuilder, String)用法及代碼示例
注:本文由純淨天空篩選整理自 Java Matcher useAnchoringBounds() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。