要通過C++ regex_match驗證輸入,首先需要包含正則表達式庫<regex>
,然后使用std::regex_match
函數(shù)來實現(xiàn)驗證。下面是一個簡單的示例代碼:
#include <iostream>
#include <string>
#include <regex>
int main() {
std::string input;
std::regex pattern("[a-zA-Z]+"); // 正則表達式模式,匹配英文字母
std::cout << "請輸入一個字符串:";
std::cin >> input;
if (std::regex_match(input, pattern)) {
std::cout << "輸入通過驗證!" << std::endl;
} else {
std::cout << "輸入不符合要求!" << std::endl;
}
return 0;
}
在上面的示例中,我們使用正則表達式[a-zA-Z]+
來匹配輸入是否只包含英文字母。您可以根據(jù)需要修改正則表達式模式來驗證不同的輸入要求。當輸入符合正則表達式模式時,將輸出"輸入通過驗證!“,否則將輸出"輸入不符合要求!”。