regex for phone number c++
std::regex r("\\(\\d{3}\\) \\d{3}-\\d{4}"); // e.g. "(012) 345-6789"
auto isValidPhoneNumber = std::regex_match(phone_num_str, r);
regex for phone number c++
std::regex r("\\(\\d{3}\\) \\d{3}-\\d{4}"); // e.g. "(012) 345-6789"
auto isValidPhoneNumber = std::regex_match(phone_num_str, r);
c++ regex to validate indian phone number pattern
Copy Code^([+][9][1]|[9][1]|[0]){0,1}([7-9]{1})([0-9]{9})$
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us