<regex>

std::smatch

typedef match_results<string::const_iterator> smatch;
string 对象的 match_results
这是 match_results 类模板的实例化,用于在 string 对象上进行匹配(使用string::const_iterator作为其迭代器类型)。

此类成员与 match_results 中描述的相同,但使用string::const_iterator作为其 BidirectionalIterator 模板参数。

有关更多信息,请参阅 match_results

另见