Partager via


regex_iterator Class

Classe d'itérateur pour les correspondances.

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
    };

Paramètres

  • BidIt
    Le type d'itérateur pour les sous-correspondances.

  • Elem
    Le type d'éléments à rechercher.

  • RXtraits
    Classe Ctraits pour les éléments.

Notes

La classe de modèle décrit un objet itérateur vers l'avant constante.Il récupère des objets de type match_results<BidIt> en appliquant à plusieurs reprises son objet *pregex d'expression régulière à la séquence de caractères définie par la plage [begin, end)itérateur.

Exemples

Consultez les rubriques suivantes pour obtenir des exemples sur les expressions régulières :

Configuration requise

en-tête : <regex>

l'espace de noms : type

Voir aussi

Référence

<regex>

regex_iterator Class

Autres ressources

<regex> membres