QRegularExpressionMatchIterator 类

QRegularExpressionMatchIterator class provides an iterator on the results of a global match of a QRegularExpression 对象与字符串。 更多...

头: #include <QRegularExpressionMatchIterator>
qmake: QT += core
Since: Qt 5.0

注意: 此类的所有函数 可重入 .

公共函数

QRegularExpressionMatchIterator ()
QRegularExpressionMatchIterator (const QRegularExpressionMatchIterator & iterator )
~QRegularExpressionMatchIterator ()
bool hasNext () const
bool isValid () const
QRegularExpression::MatchOptions matchOptions () const
QRegularExpression::MatchType matchType () const
QRegularExpressionMatch next ()
QRegularExpressionMatch peekNext () const
QRegularExpression regularExpression () const
void swap (QRegularExpressionMatchIterator & other )
QRegularExpressionMatchIterator & operator= (const QRegularExpressionMatchIterator & iterator )
QRegularExpressionMatchIterator & operator= (QRegularExpressionMatchIterator && iterator )

详细描述

QRegularExpressionMatchIterator class provides an iterator on the results of a global match of a QRegularExpression 对象与字符串。

A QRegularExpressionMatchIterator object is a forward only Java-like iterator; it can be obtained by calling the QRegularExpression::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.

每个结果是 QRegularExpressionMatch 对象,保持结果的所有信息 (包括捕获子字符串)。

例如:

// 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.

可以检索 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 () 和 matchOptions () respectively.

请参考 QRegularExpression 文档编制,了解有关 Qt 正则表达式类的更多信息。

另请参阅 QRegularExpression and QRegularExpressionMatch .

成员函数文档编制

QRegularExpressionMatchIterator:: QRegularExpressionMatchIterator ()

Constructs an empty, valid QRegularExpressionMatchIterator object. The regular expression is set to a default-constructed one; the match type to QRegularExpression::NoMatch and the match options to QRegularExpression::NoMatchOption .

援引 hasNext () member function on the constructed object will return false, as the iterator is not iterating on a valid sequence of matches.

该函数在 Qt 5.1 引入。

QRegularExpressionMatchIterator:: QRegularExpressionMatchIterator (const QRegularExpressionMatchIterator & iterator )

构造 QRegularExpressionMatchIterator object as a copy of iterator .

另请参阅 operator= ().

QRegularExpressionMatchIterator:: ~QRegularExpressionMatchIterator ()

销毁 QRegularExpressionMatchIterator 对象。

bool QRegularExpressionMatchIterator:: hasNext () const

返回 true if there is at least one match result ahead of the iterator; otherwise it returns false .

另请参阅 next ().

bool QRegularExpressionMatchIterator:: isValid () const

返回 true if the iterator object was obtained as a result from the QRegularExpression::globalMatch () function invoked on a valid QRegularExpression 对象;返回 false QRegularExpression was invalid.

另请参阅 QRegularExpression::globalMatch () 和 QRegularExpression::isValid ().

QRegularExpression::MatchOptions QRegularExpressionMatchIterator:: matchOptions () const

Returns the match options that were used to get this QRegularExpressionMatchIterator object, that is, the match options that were passed to QRegularExpression::globalMatch ().

另请参阅 QRegularExpression::globalMatch (), regularExpression (),和 matchType ().

QRegularExpression::MatchType QRegularExpressionMatchIterator:: matchType () const

Returns the match type that was used to get this QRegularExpressionMatchIterator object, that is, the match type that was passed to QRegularExpression::globalMatch ().

另请参阅 QRegularExpression::globalMatch (), regularExpression (),和 matchOptions ().

QRegularExpressionMatch QRegularExpressionMatchIterator:: next ()

Returns the next match result and advances the iterator by one position.

注意: Calling this function when the iterator is at the end of the result set leads to undefined results.

QRegularExpressionMatch QRegularExpressionMatchIterator:: peekNext () const

Returns the next match result without moving the iterator.

注意: Calling this function when the iterator is at the end of the result set leads to undefined results.

QRegularExpression QRegularExpressionMatchIterator:: regularExpression () const

返回 QRegularExpression object whose globalMatch() function returned this object.

另请参阅 QRegularExpression::globalMatch (), matchType (),和 matchOptions ().

void QRegularExpressionMatchIterator:: swap ( QRegularExpressionMatchIterator & other )

Swaps the iterator other with this iterator object. This operation is very fast and never fails.

QRegularExpressionMatchIterator &QRegularExpressionMatchIterator:: operator= (const QRegularExpressionMatchIterator & iterator )

Assigns the iterator iterator to this object, and returns a reference to the copy.

QRegularExpressionMatchIterator &QRegularExpressionMatchIterator:: operator= ( QRegularExpressionMatchIterator && iterator )

Move-assigns the iterator 到此对象。