直接上代码
#include <regex>
bool IsValidPhoneNumber(const std::string& strPhone)
{
std::regex reg ("^1(3\\d|47|5([0-3]|[5-9])|8(0|2|[5-9]))\\d{8}$");
return regex_match(strPhone,reg);
}
直接上代码
#include <regex>
bool IsValidPhoneNumber(const std::string& strPhone)
{
std::regex reg ("^1(3\\d|47|5([0-3]|[5-9])|8(0|2|[5-9]))\\d{8}$");
return regex_match(strPhone,reg);
}