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 Modifier and Type 方法 描述 MatchResult
Scanner. match()
返回此扫描仪执行的最后扫描操作的匹配结果。Methods in java.util that return types with arguments of type MatchResult Modifier and Type 方法 描述 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 Modifier and Type Class 描述 class
Matcher
通过解释Pattern
对character sequence执行匹配操作的引擎。Methods in java.util.regex that return MatchResult Modifier and Type 方法 描述 MatchResult
Matcher. toMatchResult()
返回此匹配器的匹配状态为MatchResult
。Methods in java.util.regex that return types with arguments of type MatchResult Modifier and Type 方法 描述 Stream<MatchResult>
Matcher. results()
返回与模式匹配的输入序列的每个子序列的匹配结果流。Method parameters in java.util.regex with type arguments of type MatchResult Modifier and Type 方法 描述 String
Matcher. replaceAll(Function<MatchResult,String> replacer)
将与模式匹配的输入序列的每个子序列替换为将给定的替换器函数应用于与该子序列相对应的匹配器的匹配结果的结果。String
Matcher. replaceFirst(Function<MatchResult,String> replacer)
将与模式匹配的输入序列的第一个子序列替换为将给定的替换器函数应用于与该子序列对应的匹配器的匹配结果的结果。
-