Package | Description |
---|---|
monq.jfa |
Implements Finite Automata, deterministic and
nondeterministic, with an engine for high throughput filtering of
text.
|
Modifier and Type | Method and Description |
---|---|
TextStore |
Regexp.submatches()
returns a
TextStore which contains submatches, if any,
pertaining to the most recent match. |
TextStore |
DfaRun.submatches(java.lang.StringBuilder txt,
int start)
may be called by a callback to
retrieve see submatches.
|
Modifier and Type | Method and Description |
---|---|
void |
Formatter.format(java.lang.StringBuilder out,
TextStore st,
java.util.Map<java.lang.Object,java.lang.Object> m)
arranges (some of) the pieces of text found in
st
or m in an implementation dependend manner and
appends them to out . |
void |
SimpleFormatters.FixedString.format(java.lang.StringBuilder sb,
TextStore sp,
java.util.Map<java.lang.Object,java.lang.Object> m) |
void |
SimpleFormatters.Part.format(java.lang.StringBuilder sb,
TextStore sp,
java.util.Map<java.lang.Object,java.lang.Object> m) |
void |
SimpleFormatters.PartSeq.format(java.lang.StringBuilder sb,
TextStore sp,
java.util.Map<java.lang.Object,java.lang.Object> m) |
void |
SimpleFormatters.PartLen.format(java.lang.StringBuilder sb,
TextStore sp,
java.util.Map<java.lang.Object,java.lang.Object> m) |
void |
SimpleFormatters.GetVar.format(java.lang.StringBuilder out,
TextStore sp,
java.util.Map<java.lang.Object,java.lang.Object> m) |
void |
PrintfFormatter.format(java.lang.StringBuilder yytext,
TextStore ts,
java.util.Map<java.lang.Object,java.lang.Object> m) |
FaAction |
Dfa.match(CharSource in,
java.lang.StringBuilder out,
TextStore subMatches)
determine a matching prefix of
in and deliver
respective data. |
void |
RegexpSplitter.split(TextStore dst,
java.lang.StringBuilder s,
int start) |
void |
TextSplitter.split(TextStore dst,
java.lang.StringBuilder source,
int start)
separates the stretch of text defined by the suffix of
source , starting at start into parts
and stores the parts in dst . |
void |
DfaRun.unskip(TextStore ts,
int start)
shoves back characters into the input of the
DfaRun . |