public class JRegexIterator extends java.lang.Object implements RegexIterator, LastPositionFinder
RegexIterator.MatchHandler
ATOMIZING, GROUNDED, LAST_POSITION_FINDER, LOOKAHEAD
Constructor and Description |
---|
JRegexIterator(java.lang.String string,
java.util.regex.Pattern pattern)
Construct a RegexIterator.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the iterator.
|
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
|
Item |
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.
|
public JRegexIterator(java.lang.String string, java.util.regex.Pattern pattern)
string
- the string to be analysedpattern
- the regular expressionpublic int getLength() throws XPathException
LastPositionFinder
SequenceIterator.LAST_POSITION_FINDER
getLength
in interface LastPositionFinder
XPathException
- if an error occurs evaluating the sequence in order to determine
the number of itemspublic Item next()
next
in interface SequenceIterator
public void close()
SequenceIterator
(Currently, closing an iterator is important only when the data is being "pushed" in another thread. Closing the iterator terminates that thread and means that it needs to do no additional work. Indeed, failing to close the iterator may cause the push thread to hang waiting for the buffer to be emptied.)
close
in interface SequenceIterator
public int getProperties()
getProperties
in interface SequenceIterator
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 RegexIterator
public java.lang.String getRegexGroup(int number)
getRegexGroup
in interface RegexIterator
number
- the number of the group to be obtainedpublic int getNumberOfGroups()
getNumberOfGroups
in interface RegexIterator
public void processMatchingSubstring(RegexIterator.MatchHandler action) throws XPathException
processMatchingSubstring
in interface RegexIterator
action
- defines the processing to be performed at the start and end of a groupXPathException
Copyright (c) 2004-2018 Saxonica Limited. All rights reserved.