blob: 4f227d44f648ec1966027bd8cecd27bfe8516f76 [file] [log] [blame]
#include <regex>
#include <string>
int main() {
const std::string str = "test0159";
const std::regex re("^[a-z]+[0-9]+$", std::regex_constants::extended | std::regex_constants::nosubs);
return std::regex_search(str, re) ? 0 : -1;
}