<regex>

std::cmatch

typedef match_results<const char*> cmatch;
用于字符串字面量的 match_results
这是 match_results 类模板的一个实例,用于匹配字符串字面量(具有const char*作为其迭代器类型)。

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

有关更多信息,请参阅 match_results

另见