std::regex_iterator<BidirIt,CharT,Traits>::operator*,operator->
< cpp | regex | regex iterator
const value_type& operator*() const; |
(1) | (C++11 起) |
const value_type* operator->() const; |
(2) | (C++11 起) |
从 regex_iterator
提取当前 std::match_results :
1) 返回到当前 std::match_results 的引用。
2) 返回指向当前 std::match_results 的指针。
示例
运行此代码
#include <iostream> #include <string> #include <regex> int main() { std::regex expression("[1234]"); std::string searchStr("1.1a2b3cjk34"); for (std::regex_iterator<std::string::iterator> it{ searchStr.begin(), searchStr.end(), expression }, last{}; it != last; ++it) { std::cout << it->str(); } }
输出:
112334