blob: 2059a9f08f74742cc006ceb2152fcd32a94b90a9 [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;
}