Uses of Class
java.util.regex.Matcher
-
Packages that use Matcher 软件包 描述 java.util.regex 匹配字符序列与正则表达式指定的模式的类。 -
-
Uses of Matcher in java.util.regex
Methods in java.util.regex that return Matcher Modifier and Type 方法 描述 Matcher
Matcher. appendReplacement(StringBuffer sb, String replacement)
实施非终端附加和替换步骤。Matcher
Matcher. appendReplacement(StringBuilder sb, String replacement)
实施非终端附加和替换步骤。Matcher
Pattern. matcher(CharSequence input)
创建一个匹配器,匹配给定的输入与此模式。Matcher
Matcher. region(int start, int end)
设置该匹配器区域的限制。Matcher
Matcher. reset()
重设此匹配器。Matcher
Matcher. reset(CharSequence input)
使用新的输入序列重置此匹配器。Matcher
Matcher. useAnchoringBounds(boolean b)
设置该匹配器的区域边界的锚定。Matcher
Matcher. usePattern(Pattern newPattern)
更改Pattern
这个Matcher
用于查找匹配。Matcher
Matcher. useTransparentBounds(boolean b)
设置此匹配器的区域边界的透明度。
-