Uses of Class
org.apache.commons.lang3.text.StrMatcher
Package
Description
Provides classes for handling and manipulating text, partly as an extension to
java.text
.-
Uses of StrMatcher in org.apache.commons.lang3.text
Modifier and TypeFieldDescriptionstatic final StrMatcher
StrSubstitutor.DEFAULT_PREFIX
Deprecated.Constant for the default variable prefix.static final StrMatcher
StrSubstitutor.DEFAULT_SUFFIX
Deprecated.Constant for the default variable suffix.static final StrMatcher
StrSubstitutor.DEFAULT_VALUE_DELIMITER
Deprecated.Constant for the default value delimiter of a variable.Modifier and TypeMethodDescriptionstatic StrMatcher
StrMatcher.charMatcher
(char ch) Deprecated.Constructor that creates a matcher from a character.static StrMatcher
StrMatcher.charSetMatcher
(char... chars) Deprecated.Constructor that creates a matcher from a set of characters.static StrMatcher
StrMatcher.charSetMatcher
(String chars) Deprecated.Constructor that creates a matcher from a string representing a set of characters.static StrMatcher
StrMatcher.commaMatcher()
Deprecated.Returns a matcher which matches the comma character.static StrMatcher
StrMatcher.doubleQuoteMatcher()
Deprecated.Returns a matcher which matches the double quote character.StrTokenizer.getDelimiterMatcher()
Deprecated.Gets the field delimiter matcher.StrTokenizer.getIgnoredMatcher()
Deprecated.Gets the ignored character matcher.StrTokenizer.getQuoteMatcher()
Deprecated.Gets the quote matcher currently in use.StrTokenizer.getTrimmerMatcher()
Deprecated.Gets the trimmer character matcher.StrSubstitutor.getValueDelimiterMatcher()
Deprecated.Gets the variable default value delimiter matcher currently in use.StrSubstitutor.getVariablePrefixMatcher()
Deprecated.Gets the variable prefix matcher currently in use.StrSubstitutor.getVariableSuffixMatcher()
Deprecated.Gets the variable suffix matcher currently in use.static StrMatcher
StrMatcher.noneMatcher()
Deprecated.Matches no characters.static StrMatcher
StrMatcher.quoteMatcher()
Deprecated.Returns a matcher which matches the single or double quote character.static StrMatcher
StrMatcher.singleQuoteMatcher()
Deprecated.Returns a matcher which matches the single quote character.static StrMatcher
StrMatcher.spaceMatcher()
Deprecated.Returns a matcher which matches the space character.static StrMatcher
StrMatcher.splitMatcher()
Deprecated.Matches the same characters as StringTokenizer, namely space, tab, newline and formfeed.static StrMatcher
StrMatcher.stringMatcher
(String str) Deprecated.Constructor that creates a matcher from a string.static StrMatcher
StrMatcher.tabMatcher()
Deprecated.Returns a matcher which matches the tab character.static StrMatcher
StrMatcher.trimMatcher()
Deprecated.Matches the String trim() whitespace characters.Modifier and TypeMethodDescriptionboolean
StrBuilder.contains
(StrMatcher matcher) Deprecated.Checks if the string builder contains a string matched using the specified matcher.StrBuilder.deleteAll
(StrMatcher matcher) Deprecated.Deletes all parts of the builder that the matcher matches.StrBuilder.deleteFirst
(StrMatcher matcher) Deprecated.Deletes the first match within the builder using the specified matcher.int
StrBuilder.indexOf
(StrMatcher matcher) Deprecated.Searches the string builder using the matcher to find the first match.int
StrBuilder.indexOf
(StrMatcher matcher, int startIndex) Deprecated.Searches the string builder using the matcher to find the first match searching from the given index.int
StrBuilder.lastIndexOf
(StrMatcher matcher) Deprecated.Searches the string builder using the matcher to find the last match.int
StrBuilder.lastIndexOf
(StrMatcher matcher, int startIndex) Deprecated.Searches the string builder using the matcher to find the last match searching from the given index.StrBuilder.replace
(StrMatcher matcher, String replaceStr, int startIndex, int endIndex, int replaceCount) Deprecated.Advanced search and replaces within the builder using a matcher.StrBuilder.replaceAll
(StrMatcher matcher, String replaceStr) Deprecated.Replaces all matches within the builder with the replace string.StrBuilder.replaceFirst
(StrMatcher matcher, String replaceStr) Deprecated.Replaces the first match within the builder with the replace string.StrTokenizer.setDelimiterMatcher
(StrMatcher delim) Deprecated.Sets the field delimiter matcher.StrTokenizer.setIgnoredMatcher
(StrMatcher ignored) Deprecated.Sets the matcher for characters to ignore.StrTokenizer.setQuoteMatcher
(StrMatcher quote) Deprecated.Sets the quote matcher to use.StrTokenizer.setTrimmerMatcher
(StrMatcher trimmer) Deprecated.Sets the matcher for characters to trim.StrSubstitutor.setValueDelimiterMatcher
(StrMatcher valueDelimiterMatcher) Deprecated.Sets the variable default value delimiter matcher to use.StrSubstitutor.setVariablePrefixMatcher
(StrMatcher prefixMatcher) Deprecated.Sets the variable prefix matcher currently in use.StrSubstitutor.setVariableSuffixMatcher
(StrMatcher suffixMatcher) Deprecated.Sets the variable suffix matcher currently in use.ModifierConstructorDescriptionStrSubstitutor
(StrLookup<?> variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape) Deprecated.Creates a new instance and initializes it.StrSubstitutor
(StrLookup<?> variableResolver, StrMatcher prefixMatcher, StrMatcher suffixMatcher, char escape, StrMatcher valueDelimiterMatcher) Deprecated.Creates a new instance and initializes it.StrTokenizer
(char[] input, StrMatcher delim) Deprecated.Constructs a tokenizer splitting using the specified delimiter matcher.StrTokenizer
(char[] input, StrMatcher delim, StrMatcher quote) Deprecated.Constructs a tokenizer splitting using the specified delimiter matcher and handling quotes using the specified quote matcher.StrTokenizer
(String input, StrMatcher delim) Deprecated.Constructs a tokenizer splitting using the specified delimiter matcher.StrTokenizer
(String input, StrMatcher delim, StrMatcher quote) Deprecated.Constructs a tokenizer splitting using the specified delimiter matcher and handling quotes using the specified quote matcher.