std::regex r("(d{3}) d{3}-d{4}"); // e.g. "(012) 345-6789" auto isValidPhoneNumber = std::regex_match(phone_num_str, r);