boolean |
TextStringBuilder.contains(StringMatcher matcher) |
Checks if the string builder contains a string matched using the specified matcher.
|
TextStringBuilder |
TextStringBuilder.deleteAll(StringMatcher matcher) |
Deletes all parts of the builder that the matcher matches.
|
TextStringBuilder |
TextStringBuilder.deleteFirst(StringMatcher matcher) |
Deletes the first match within the builder using the specified matcher.
|
int |
TextStringBuilder.indexOf(StringMatcher matcher) |
Searches the string builder using the matcher to find the first match.
|
int |
TextStringBuilder.indexOf(StringMatcher matcher,
int startIndex) |
Searches the string builder using the matcher to find the first match searching from the given index.
|
int |
TextStringBuilder.lastIndexOf(StringMatcher matcher) |
Searches the string builder using the matcher to find the last match.
|
int |
TextStringBuilder.lastIndexOf(StringMatcher matcher,
int startIndex) |
Searches the string builder using the matcher to find the last match searching from the given index.
|
TextStringBuilder |
TextStringBuilder.replace(StringMatcher matcher,
String replaceStr,
int startIndex,
int endIndex,
int replaceCount) |
Advanced search and replaces within the builder using a matcher.
|
TextStringBuilder |
TextStringBuilder.replaceAll(StringMatcher matcher,
String replaceStr) |
Replaces all matches within the builder with the replace string.
|
TextStringBuilder |
TextStringBuilder.replaceFirst(StringMatcher matcher,
String replaceStr) |
Replaces the first match within the builder with the replace string.
|
StringSubstitutor |
StringSubstitutor.setValueDelimiterMatcher(StringMatcher valueDelimiterMatcher) |
Sets the variable default value delimiter matcher to use.
|
StringSubstitutor |
StringSubstitutor.setVariablePrefixMatcher(StringMatcher prefixMatcher) |
Sets the variable prefix matcher currently in use.
|
StringSubstitutor |
StringSubstitutor.setVariableSuffixMatcher(StringMatcher suffixMatcher) |
Sets the variable suffix matcher currently in use.
|