An iterator adaptor that will provide repeated calls of regex_search over a range until no more matches remain.
Definition at line 2429 of file tr1_impl/regex.
std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator | ( | ) |
Provides a singular iterator, useful for indicating one-past-the-end of a range.
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator | ( | _Bi_iter | __a, | |
_Bi_iter | __b, | |||
const regex_type & | __re, | |||
regex_constants::match_flag_type | __m = regex_constants::match_default | |||
) |
Constructs a regex_iterator...
a | [IN] The start of a text range to search. | |
b | [IN] One-past-the-end of the text range to search. | |
re | [IN] The regular expression to match. | |
m | [IN] Policy flags for match rules. |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::regex_iterator | ( | const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & | __rhs | ) |
Copy constructs a regex_iterator.
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
bool std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator!= | ( | const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & | __rhs | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
const value_type& std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator* | ( | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
regex_iterator std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ | ( | int | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
regex_iterator& std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator++ | ( | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
const value_type* std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator-> | ( | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
regex_iterator& std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator= | ( | const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & | __rhs | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.
bool std::regex_iterator< _Bi_iter, _Ch_type, _Rx_traits >::operator== | ( | const regex_iterator< _Bi_iter, _Ch_type, _Rx_traits > & | __rhs | ) |
Implement this function.
Doc me! See doc/doxygen/TODO and http://gcc.gnu.org/ml/libstdc++/2002-02/msg00003.html for more.