命名空间
变体
操作

std::regex_token_iterator<BidirIt,CharT,Traits>::operator++, operator++(int)

来自 cppreference.com
regex_token_iterator& operator++();
(自 C++11 起)
regex_token_iterator operator++( int );
(自 C++11 起)

将迭代器推进到下一个子匹配。

如果 *this 是后缀迭代器,则将 *this 设置为序列结束迭代器。

否则,如果 N + 1 < subs.size(),则递增 N 并将结果设置为当前匹配的地址。

否则,将 N 设置为 0 并递增 position。如果 position 不是序列结束迭代器,则运算符将结果设置为当前匹配的地址。

否则,如果 subs 中存储的任何值等于 -1 并且 prev->suffix().length() 不等于 0,则运算符将 *this 设置为指向范围 [prev->suffix().first, prev->suffix().second] 的后缀迭代器。

否则,将 *this 设置为序列结束迭代器。

如果迭代器是序列结束迭代器,则行为未定义。

[编辑] 参数

(无)

[编辑] 返回值

1) *this
2) 迭代器的先前值。