Matcher.Region(Int32, Int32) 方法

定义

设置此匹配程序区域的限制。

[Android.Runtime.Register("region", "(II)Ljava/util/regex/Matcher;", "")]
public Java.Util.Regex.Matcher Region (int start, int end);
[<Android.Runtime.Register("region", "(II)Ljava/util/regex/Matcher;", "")>]
member this.Region : int * int -> Java.Util.Regex.Matcher

参数

start
Int32

要开始搜索的索引(含)

end
Int32

要结束搜索的索引(独占)

返回

此匹配程序

属性

注解

设置此匹配程序区域的限制。 该区域是将搜索以查找匹配项的输入序列的一部分。 调用此方法将重置匹配程序,然后将区域设置为从参数指定的 start 索引处开始,并在参数指定的 end 索引处结束。

根据所使用的透明度和定位(见 #useTransparentBounds(boolean) useTransparentBounds#useAnchoringBounds(boolean) useAnchoringBounds),某些构造(如定位点)在区域边界或周围的行为可能有所不同。

在 1.5 中添加。

适用于 . 的 java.util.regex.Matcher.region(int, int)Java 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

适用于