std::regex_match() 函数将输入字符串与存储在 std::regex 对象中的正则表达式模式进行比较。匹配结果输出到 std::cmatch 对象(可以通过 str() 转换为 std::string)。
std::regex_match()
std::regex
std::cmatch
str()
std::string
有关正则表达式的更多信息(包括交互式示例)