std::match_results<BidirIt,Alloc>::size
来自 cppreference.com
< cpp | regex | match results
size_type size() const noexcept; |
(自 C++11 起) | |
返回子匹配的数量,即 std::distance(begin(), end()).
如果 *this 不代表成功匹配的结果,则返回 0.
内容 |
[编辑] 参数
(无)
[编辑] 返回值
子匹配的数量。
[编辑] 复杂度
常数。
[编辑] 示例
运行此代码
#include <iostream> #include <regex> #include <string> int main() { std::regex re("a(a)*b"); std::string target("aaab"); std::smatch sm; std::cout << sm.size() << '\n'; std::regex_match(target, sm, re); std::cout << sm.size() << '\n'; }
输出
0 2
[编辑] 另请参阅
返回指向子匹配列表开头的迭代器 (公有成员函数) | |
返回指向子匹配列表末尾的迭代器 (公有成员函数) |