std::regex 的几种匹配方式
时间: 2023-11-10 11:39:02 浏览: 155
VC++支持中文的正则表达式函数库
5星 · 资源好评率100%
std::regex 包含三种匹配方式:全串匹配、局部匹配和迭代器匹配。其中,全串匹配是默认的匹配方式,使用 std::regex_match() 函数;局部匹配使用 std::regex_search() 函数;迭代器匹配使用 std::regex_iterator 和 std::sregex_iterator 类。
阅读全文