QRegularExpressionMatchIterator露
- PyQt5.QtCore.QRegularExpressionMatchIterator
Description露
The QRegularExpressionMatchIterator class provides an iterator on the results of a global match of a QRegularExpression object against a string.
A QRegularExpressionMatchIterator object is a forward only Java-like iterator; it can be obtained by calling the globalMatch() function. A new QRegularExpressionMatchIterator will be positioned before the first result. You can then call the hasNext() function to check if there are more results available; if so, the next() function will return the next result and advance the iterator.
Each result is a QRegularExpressionMatch object holding all the information for that result (including captured substrings).
For instance:
# // extracts the words
# QRegularExpression re("(\\w+)");
# QString subject("the quick fox");
# QRegularExpressionMatchIterator i = re.globalMatch(subject);
# while (i.hasNext()) {
# QRegularExpressionMatch match = i.next();
# // ...
# }
Moreover, QRegularExpressionMatchIterator offers a peekNext() function to get the next result without advancing the iterator.
You can retrieve the QRegularExpression object the subject string was matched against by calling the regularExpression() function; the match type and the match options are available as well by calling the matchType() and the matchOptions() respectively.
Please refer to the QRegularExpression documentation for more information about the Qt regular expression classes.
See also
Methods露
- __init__()
TODO
- __init__(QRegularExpressionMatchIterator)
TODO
- hasNext() → bool
TODO
- isValid() → bool
TODO
- matchOptions() → MatchOptions
TODO
- matchType() → MatchType
TODO
- next() → QRegularExpressionMatch
TODO
- peekNext() → QRegularExpressionMatch
TODO
- regularExpression() → QRegularExpression
TODO
- swap(QRegularExpressionMatchIterator)
TODO