json/benchmarks/thirdparty/benchmark/cmake/std_regex.cpp
2018-01-18 22:00:32 +01:00

11 lines
259 B
C++

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