|
Biter | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--regexp.REToken | +--regexp.RE
RE provides the user interface for compiling and matching regular expressions.
A regular expression object (class RE) is compiled by constructing it
from a String, StringBuffer or character array, with optional
compilation flags (below)
and an optional syntax specification (see RESyntax; if not specified,
RESyntax.RE_SYNTAX_PERL5
is used).
Various methods attempt to match input text against a compiled regular expression. These methods are:
isMatch
: returns true if the input text in its entirety
matches the regular expression pattern.
getMatch
: returns the first match found in the input text,
or null if no match is found.
getAllMatches
: returns an array of all non-overlapping
matches found in the input text. If no matches are found, the array is
zero-length.
substitute
: substitute the first occurence of the pattern
in the input text with a replacement string (which may include
metacharacters $0-$9, see REMatch.substituteInto).
substituteAll
: same as above, but repeat for each match
before returning.
getMatchEnumeration
: returns an REMatchEnumeration object
that allows iteration over the matches (see REMatchEnumeration for some
reasons why you may want to do this instead of using getAllMatches
.
These methods all have similar argument lists. The input can be a String, a character array, a StringBuffer or an InputStream of some sort. Note that when using an InputStream, the stream read position cannot be guaranteed after attempting a match (this is not a bug, but a consequence of the way regular expressions work). Using an REMatchEnumeration can eliminate most positioning problems.
The optional index argument specifies the offset from the beginning of the text at which the search should start (see the descriptions of some of the execution flags for how this can affect positional pattern operators). For an InputStream, this means an offset from the current read position, so subsequent calls with the same index argument on an InputStream will not necessarily be accessing the same position on the stream, whereas repeated searches at a given index in a fixed string will return consistent results.
You can optionally affect the execution environment by using a combination of execution flags (constants listed below).
Field Summary | |
private REToken |
firstToken
|
private REToken |
lastToken
|
private int |
m_numSubs
|
static int |
REG_ANCHORINDEX
Execution flag. |
static int |
REG_DOT_NEWLINE
Compilation flag. |
static int |
REG_ICASE
Compilation flag. |
static int |
REG_MULTILINE
Compilation flag. |
static int |
REG_NOTBOL
Execution flag. |
static int |
REG_NOTEOL
Execution flag. |
private static String |
s_version
|
Fields inherited from class regexp.REToken |
m_next,
m_subIndex,
m_uncle,
newline |
Constructor Summary | |
|
RE(Object pattern)
Constructs a regular expression pattern buffer without any compilation flags set, and using the default syntax (RESyntax.RE_SYNTAX_PERL5). |
|
RE(Object pattern,
int cflags)
Constructs a regular expression pattern buffer using the specified compilation flags and the default syntax (RESyntax.RE_SYNTAX_PERL5). |
|
RE(Object pattern,
int cflags,
RESyntax syntax)
Constructs a regular expression pattern buffer using the specified compilation flags and regular expression syntax. |
private |
RE(Object patternObj,
int cflags,
RESyntax syntax,
int myIndex,
int nextSub)
|
private |
RE(REToken f_first,
REToken f_last,
int f_subs,
int f_subIndex)
|
Method Summary | |
private void |
addToken(REToken next)
|
(package private) boolean |
chain(REToken f_next)
|
(package private) void |
dump(StringBuffer os)
|
REMatch[] |
getAllMatches(Object input)
Returns an array of all matches found in the input. |
REMatch[] |
getAllMatches(Object input,
int index)
Returns an array of all matches found in the input, beginning at the specified index position. |
REMatch[] |
getAllMatches(Object input,
int index,
int eflags)
Returns an array of all matches found in the input string, beginning at the specified index position and using the specified execution flags. |
private REMatch[] |
getAllMatchesImpl(CharIndexed input,
int index,
int eflags)
|
private static int |
getCharUnit(char[] input,
int index,
CharUnit unit)
|
REMatch |
getMatch(Object input)
Returns the first match found in the input. |
REMatch |
getMatch(Object input,
int index)
Returns the first match found in the input, beginning the search at the specified index. |
REMatch |
getMatch(Object input,
int index,
int eflags)
Returns the first match found in the input, beginning the search at the specified index, and using the specified execution flags. |
REMatch |
getMatch(Object input,
int index,
int eflags,
StringBuffer buffer)
Returns the first match found in the input, beginning the search at the specified index, and using the specified execution flags. |
REMatchEnumeration |
getMatchEnumeration(Object input)
Returns an REMatchEnumeration that can be used to iterate over the matches found in the input text. |
REMatchEnumeration |
getMatchEnumeration(Object input,
int index)
Returns an REMatchEnumeration that can be used to iterate over the matches found in the input text. |
REMatchEnumeration |
getMatchEnumeration(Object input,
int index,
int eflags)
Returns an REMatchEnumeration that can be used to iterate over the matches found in the input text. |
(package private) REMatch |
getMatchImpl(CharIndexed input,
int index,
int eflags,
StringBuffer buffer)
|
int |
getMinimumLength()
Returns the minimum number of characters that could possibly constitute a match of this regular expression. |
private int |
getMinMax(char[] input,
int index,
IntPair minMax,
RESyntax syntax)
|
int |
getNumSubs()
Returns the maximum number of subexpressions in this regular expression. |
private static int |
getPosixSet(char[] pattern,
int index,
StringBuffer buf)
|
boolean |
isMatch(Object input)
Checks if the input in its entirety is an exact match of this regular expression. |
boolean |
isMatch(Object input,
int index)
Checks if the input string, starting from index, is an exact match of this regular expression. |
boolean |
isMatch(Object input,
int index,
int eflags)
Checks if the input, starting from index and using the specified execution flags, is an exact match of this regular expression. |
private boolean |
isMatchImpl(CharIndexed input,
int index,
int eflags)
|
private static CharIndexed |
makeCharIndexed(Object input,
int index)
|
(package private) int[] |
match(CharIndexed input,
int index,
int eflags,
REMatch mymatch)
|
private static REToken |
setRepeated(REToken current,
int min,
int max,
int index)
|
(package private) void |
setUncle(REToken f_uncle)
|
String |
substitute(Object input,
String replace)
Substitutes the replacement text for the first match found in the input. |
String |
substitute(Object input,
String replace,
int index)
Substitutes the replacement text for the first match found in the input beginning at the specified index position. |
String |
substitute(Object input,
String replace,
int index,
int eflags)
Substitutes the replacement text for the first match found in the input string, beginning at the specified index position and using the specified execution flags. |
String |
substituteAll(Object input,
String replace)
Substitutes the replacement text for each non-overlapping match found in the input text. |
String |
substituteAll(Object input,
String replace,
int index)
Substitutes the replacement text for each non-overlapping match found in the input text, starting at the specified index. |
String |
substituteAll(Object input,
String replace,
int index,
int eflags)
Substitutes the replacement text for each non-overlapping match found in the input text, starting at the specified index and using the specified execution flags. |
private String |
substituteAllImpl(CharIndexed input,
String replace,
int index,
int eflags)
|
private String |
substituteImpl(CharIndexed input,
String replace,
int index,
int eflags)
|
String |
toString()
Return a human readable form of the compiled regular expression, useful for debugging. |
static String |
version()
Returns a string representing the version of the gnu.regexp package. |
Methods inherited from class regexp.REToken |
dumpAll,
next |
Methods inherited from class java.lang.Object |
|
Field Detail |
private static final String s_version
private REToken firstToken
private REToken lastToken
private int m_numSubs
public static final int REG_ICASE
public static final int REG_DOT_NEWLINE
public static final int REG_MULTILINE
public static final int REG_NOTBOL
This example demonstrates the results of various ways of matching on a substring.
// Results:
String s = "food bar fool";
RE exp = new RE("^foo.");
REMatch m0 = exp.getMatch(s);
REMatch m1 = exp.getMatch(s.substring(8));
REMatch m2 = exp.getMatch(s.substring(8),0,RE.REG_NOTBOL);
REMatch m3 = exp.getMatch(s,8);
REMatch m4 = exp.getMatch(s,8,RE.REG_ANCHORINDEX);
// m0 = "food"
// m1 = "fool"
// m2 = null
// m3 = null
// m4 = "fool"
public static final int REG_NOTEOL
public static final int REG_ANCHORINDEX
Constructor Detail |
public RE(Object pattern) throws REException
pattern
- A regular expression pattern, in the form of a String,
StringBuffer or char[].public RE(Object pattern, int cflags) throws REException
pattern
- A regular expression pattern, in the form of a String,
StringBuffer, or char[].cflags
- The logical OR of any combination of the compilation flags listed above.public RE(Object pattern, int cflags, RESyntax syntax) throws REException
pattern
- A regular expression pattern, in the form of a String,
StringBuffer, or char[].cflags
- The logical OR of any combination of the compilation flags listed above.syntax
- The type of regular expression syntax to use.private RE(REToken f_first, REToken f_last, int f_subs, int f_subIndex)
private RE(Object patternObj, int cflags, RESyntax syntax, int myIndex, int nextSub) throws REException
Method Detail |
public static final String version()
private static int getCharUnit(char[] input, int index, CharUnit unit) throws REException
public boolean isMatch(Object input)
input
- The input text.public boolean isMatch(Object input, int index)
input
- The input text.index
- The offset index at which the search should be begin.public boolean isMatch(Object input, int index, int eflags)
input
- The input text.index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.private boolean isMatchImpl(CharIndexed input, int index, int eflags)
public int getNumSubs()
void setUncle(REToken f_uncle)
boolean chain(REToken f_next)
public int getMinimumLength()
public REMatch[] getAllMatches(Object input)
input
- The input text.public REMatch[] getAllMatches(Object input, int index)
input
- The input text.index
- The offset index at which the search should be begin.public REMatch[] getAllMatches(Object input, int index, int eflags)
input
- The input text.index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.private REMatch[] getAllMatchesImpl(CharIndexed input, int index, int eflags)
int[] match(CharIndexed input, int index, int eflags, REMatch mymatch)
public REMatch getMatch(Object input)
input
- The input text.public REMatch getMatch(Object input, int index)
input
- The input text.public REMatch getMatch(Object input, int index, int eflags)
input
- The input text.index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.public REMatch getMatch(Object input, int index, int eflags, StringBuffer buffer)
input
- The input text.index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.buffer
- The StringBuffer to save pre-match text in.REMatch getMatchImpl(CharIndexed input, int index, int eflags, StringBuffer buffer)
public REMatchEnumeration getMatchEnumeration(Object input)
input
- The input text.public REMatchEnumeration getMatchEnumeration(Object input, int index)
input
- The input text.index
- The offset index at which the search should be begin.public REMatchEnumeration getMatchEnumeration(Object input, int index, int eflags)
input
- The input text.index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.public String substitute(Object input, String replace)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).public String substitute(Object input, String replace, int index)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).index
- The offset index at which the search should be begin.public String substitute(Object input, String replace, int index, int eflags)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.private String substituteImpl(CharIndexed input, String replace, int index, int eflags)
public String substituteAll(Object input, String replace)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).public String substituteAll(Object input, String replace, int index)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).index
- The offset index at which the search should be begin.public String substituteAll(Object input, String replace, int index, int eflags)
input
- The input text.replace
- The replacement text, which may contain $x metacharacters (see REMatch.substituteInto).index
- The offset index at which the search should be begin.eflags
- The logical OR of any execution flags above.private String substituteAllImpl(CharIndexed input, String replace, int index, int eflags)
private void addToken(REToken next)
private static REToken setRepeated(REToken current, int min, int max, int index) throws REException
private static int getPosixSet(char[] pattern, int index, StringBuffer buf)
private int getMinMax(char[] input, int index, IntPair minMax, RESyntax syntax) throws REException
public String toString()
void dump(StringBuffer os)
private static CharIndexed makeCharIndexed(Object input, int index)
|
Biter | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |