regex_match函数是C++标准库中的函数,用于判断给定的字符串是否符合特定的正则表达式模式。使用该函数需要包含
下面是regex_match函数的基本用法示例:
#include <iostream>
#include <regex>
int main() {
std::string str = "Hello, World!";
std::regex pattern("Hello,.*");
if (std::regex_match(str, pattern)) {
std::cout << "String matches the pattern." << std::endl;
} else {
std::cout << "String does not match the pattern." << std::endl;
}
return 0;
}
在上面的示例中,我们定义了一个字符串str和一个正则表达式模式pattern,然后使用regex_match函数判断字符串是否符合该模式。如果字符串符合模式,则输出"String matches the pattern.“,否则输出"String does not match the pattern.”。
需要注意的是,regex_match函数用于完全匹配整个字符串与模式,如果字符串中有一部分符合模式即可,则应该使用regex_search函数。