public class ARegexIterator extends java.lang.Object implements RegexIterator, LastPositionFinder
RegexIterator.MatchHandlerATOMIZING, GROUNDED, LAST_POSITION_FINDER, LOOKAHEAD| Constructor and Description |
|---|
ARegexIterator(UnicodeString string,
UnicodeString regex,
REMatcher matcher)
Construct a RegexIterator.
|
| Modifier and Type | Method and Description |
|---|---|
static IntToIntHashMap |
computeNestingTable(UnicodeString regex)
Compute a table showing for each captured group number (opening paren in the regex),
the number of its parent group.
|
int |
getLength()
Get the last position (that is, the number of items in the sequence).
|
int |
getNumberOfGroups()
Get the number of captured groups
|
int |
getProperties()
Get properties of this iterator, as a bit-significant integer.
|
java.lang.String |
getRegexGroup(int number)
Get a substring that matches a parenthesised group within the regular expression
|
boolean |
isMatching()
Determine whether the current item is a matching item or a non-matching item
|
StringValue |
next()
Get the next item in the sequence
|
void |
processMatchingSubstring(RegexIterator.MatchHandler action)
Process a matching substring, performing specified actions at the start and end of each captured
subgroup.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose, forEachOrFail, materializepublic ARegexIterator(UnicodeString string, UnicodeString regex, REMatcher matcher)
string - the string to be analysedmatcher - a matcher for the regular expressionpublic int getLength()
throws XPathException
LastPositionFinderSequenceIterator.LAST_POSITION_FINDERgetLength in interface LastPositionFinderXPathException - if an error occurs evaluating the sequence in order to determine
the number of itemspublic StringValue next() throws XPathException
next in interface SequenceIterator<StringValue>XPathException - if an error occurs retrieving the next itempublic int getProperties()
getProperties in interface SequenceIterator<StringValue>SequenceIterator.GROUNDED, SequenceIterator.LAST_POSITION_FINDER,
and SequenceIterator.LOOKAHEAD. It is always
acceptable to return the value zero, indicating that there are no known special properties.
It is acceptable for the properties of the iterator to change depending on its state.public boolean isMatching()
isMatching in interface RegexIteratorpublic java.lang.String getRegexGroup(int number)
getRegexGroup in interface RegexIteratornumber - the number of the group to be obtainedpublic int getNumberOfGroups()
getNumberOfGroups in interface RegexIteratorpublic void processMatchingSubstring(RegexIterator.MatchHandler action) throws XPathException
RegexIterator.MatchHandler methods onGroupStart() and onGroupEnd().processMatchingSubstring in interface RegexIteratoraction - defines the processing to be performed at the start and end of a groupXPathExceptionpublic static IntToIntHashMap computeNestingTable(UnicodeString regex)
Copyright (c) 2004-2020 Saxonica Limited. All rights reserved.