Uses of Interface
java.util.regex.MatchResult
-
Packages that use MatchResult 软件包 描述 java.util 包含集合框架,一些国际化支持类,服务加载器,属性,随机数生成,字符串解析和扫描类,base64编码和解码,位数组和几个其他实用程序类。java.util.regex 用于将字符序列与正则表达式指定的模式匹配的类。 -
-
Uses of MatchResult in java.util
Methods in java.util that return MatchResult 变量和类型 方法 描述 MatchResult
Scanner. match()
返回此扫描程序执行的上次扫描操作的匹配结果。Methods in java.util that return types with arguments of type MatchResult 变量和类型 方法 描述 Stream<MatchResult>
Scanner. findAll(String patString)
返回与提供的模式字符串匹配的匹配结果流。Stream<MatchResult>
Scanner. findAll(Pattern pattern)
返回此扫描程序的匹配结果流。 -
Uses of MatchResult in java.util.regex
Classes in java.util.regex that implement MatchResult 变量和类型 类 描述 class
Matcher
通过解释Pattern
在character sequence上执行匹配操作的引擎。Methods in java.util.regex that return MatchResult 变量和类型 方法 描述 MatchResult
Matcher. toMatchResult()
以MatchResult
的形式返回此匹配器的匹配状态。Methods in java.util.regex that return types with arguments of type MatchResult 变量和类型 方法 描述 Stream<MatchResult>
Matcher. results()
返回与模式匹配的输入序列的每个子序列的匹配结果流。Method parameters in java.util.regex with type arguments of type MatchResult 变量和类型 方法 描述 String
Matcher. replaceAll(Function<MatchResult,String> replacer)
将与模式匹配的输入序列的每个子序列替换为将给定的替换函数应用于与该子序列对应的此匹配器的匹配结果的结果。String
Matcher. replaceFirst(Function<MatchResult,String> replacer)
将与模式匹配的输入序列的第一个子序列替换为将给定的replacer函数应用于与该子序列对应的此匹配器的匹配结果的结果。
-