Uses of Class
org.aoju.bus.core.text.Matchers
Packages that use Matchers
-
Uses of Matchers in org.aoju.bus.core.text
Methods in org.aoju.bus.core.text that return MatchersModifier and TypeMethodDescriptionstatic MatchersMatchers.charMatcher(char ch) 构造函数static MatchersMatchers.charSetMatcher(char... chars) 构造函数static MatchersMatchers.charSetMatcher(String chars) 构造函数static MatchersMatchers.commaMatcher()返回一个匹配逗号字符的匹配器static MatchersMatchers.doubleQuoteMatcher()匹配字符串双引号字符.static MatchersMatchers.noneMatcher()匹配任何字符.static MatchersMatchers.quoteMatcher()匹配字符串单引号/双引号字符.static MatchersMatchers.singleQuoteMatcher()匹配字符串单引号字符.static MatchersMatchers.spaceMatcher()返回一个匹配空格字符的匹配器static MatchersMatchers.splitMatcher()匹配相同的字符,即空格、制表符、换行符等.static MatchersMatchers.stringMatcher(String text) 构造函数static MatchersMatchers.tabMatcher()返回一个匹配tab字符的匹配器static MatchersMatchers.trimMatcher()匹配字符串trim()空白字符.Methods in org.aoju.bus.core.text with parameters of type MatchersModifier and TypeMethodDescriptionboolean检查字符串生成器是否包含使用指定匹配器匹配的字符串删除匹配程序匹配的生成器的所有部分.TextBuilder.deleteFirst(Matchers matcher) 使用指定的匹配器删除生成器中的第一个匹配项.int使用matcher搜索字符串生成器以查找第一个匹配项.int使用matcher搜索字符串生成器,以查找从给定索引中搜索的第一个匹配项.intTextBuilder.lastIndexOf(Matchers matcher) 使用matcher搜索字符串生成器以查找最后一个匹配项intTextBuilder.lastIndexOf(Matchers matcher, int startIndex) 使用matcher搜索字符串生成器,以查找从给定索引中搜索的最后一个匹配项TextBuilder.replace(Matchers matcher, String replaceStr, int startIndex, int endIndex, int replaceCount) 高级搜索并在构建器中使用匹配器进行替换TextBuilder.replaceAll(Matchers matcher, String replaceStr) 用替换字符串替换生成器中的所有匹配项TextBuilder.replaceFirst(Matchers matcher, String replaceStr) 用替换字符串替换生成器中的所有匹配项 -
Uses of Matchers in org.aoju.bus.core.text.replacer
Fields in org.aoju.bus.core.text.replacer declared as MatchersModifier and TypeFieldDescriptionstatic final MatchersPrivacyReplacer.DEFAULT_PREFIX默认变量前缀static final MatchersPrivacyReplacer.DEFAULT_SUFFIX默认变量后缀static final MatchersPrivacyReplacer.DEFAULT_VALUE_DELIMITER默认值分隔符Methods in org.aoju.bus.core.text.replacer that return MatchersModifier and TypeMethodDescriptionPrivacyReplacer.getValueDelimiterMatcher()PrivacyReplacer.getVariablePrefixMatcher()获取当前使用的变量前缀匹配器PrivacyReplacer.getVariableSuffixMatcher()获取当前使用的变量后缀匹配器Methods in org.aoju.bus.core.text.replacer with parameters of type MatchersModifier and TypeMethodDescriptionPrivacyReplacer.setValueDelimiterMatcher(Matchers valueDelimiterMatcher) PrivacyReplacer.setVariablePrefixMatcher(Matchers prefixMatcher) 设置当前使用的变量前缀匹配器PrivacyReplacer.setVariableSuffixMatcher(Matchers suffixMatcher) 设置当前使用的变量后缀匹配器Constructors in org.aoju.bus.core.text.replacer with parameters of type MatchersModifierConstructorDescriptionPrivacyReplacer(Lookups<?> resolver, Matchers prefixMatcher, Matchers suffixMatcher, char escape) 创建一个新实例并初始化.PrivacyReplacer(Lookups<?> resolver, Matchers prefixMatcher, Matchers suffixMatcher, char escape, Matchers delimiter) 创建一个新实例并初始化.