Class Summary |
Matcher |
Matcher instance is an automaton that actually performs matching. |
Optimizer |
|
Pattern |
A handle for a precompiled regular expression.
To match a regular expression myExpr against a text myString one should first create a Pattern object: |
PerlSubstitution |
An implementation of the Substitution interface. |
Replacer |
The Replacer class suggests some methods to replace occurences of a pattern
either by a result of evaluation of a perl-like expression, or by a plain string,
or according to a custom substitution model, provided as a Substitution interface implementation.
A Replacer instance may be obtained either using Pattern.replacer(...) method, or by constructor: |
RETokenizer |
The Tokenizer class suggests a methods to break a text into tokens using
occurences of a pattern as delimiters. |
WildcardPattern |
A Pattern subclass that accepts a simplified pattern syntax:
? - matches any single character;
* - matches any number of any characters;
all the rest - matches itself. |