共用方式為


regex_iterator Class

有符合的 iterator 類別。

template<class BidIt, class Elem = iterator_traits<BidIt>::value_type,
    class RXtraits = regex_traits<Elem> >
        class regex_iterator {
public:
    typedef basic_regex<Elem, RXtraits> regex_type;
    typedef match_results<BidIt> value_type;
    typedef std::forward_iterator_tag iterator_category;
    typedef std::ptrdiff_t difference_type;
    typedef const match_results<BidIt>* pointer;
    typedef const match_results<BidIt>& reference;

    regex_iterator();
    regex_iterator(BidIt first, BidIt last,
        const regex_type& re,
        regex_constants::match_flag_type f = regex_constants::match_default);

    bool operator==(const regex_iterator& right);
    bool operator!=(const regex_iterator& right);
    const match_results<BidIt>& operator*();
    const match_results<BidIt> *operator->();
    regex_iterator& operator++();
    regex_iterator& operator++(int);

    BidIt begin;                            // exposition only
    BidIt end;                              // exposition only
    regex_type *pregex;                     // exposition only
    regex_constants::match_flag_type flags; // exposition only
    match_results<BidIt> match;             // exposition only
    };

參數

  • BidIt
    元素 iterator 型別。

  • Elem
    要符合的項目型別。

  • RXtraits
    項目的特性類別。

備註

樣板類別描述的常數的正向 iterator 物件。 它會擷取型別的物件match_results<BidIt>藉由重複套用它的規則運算式物件*pregex iterator 範圍所定義的字元序列[begin, end)。

範例

在 [規則運算式,請參閱下列主題的範例:

需求

標頭: <regex>

Namespace: 標準

請參閱

參考

<regex>

regex_iterator Class

其他資源

<regex> 成員