mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
added Google Benchmark lib (currently linux only) compile with ENABLE_BENCHMARK see bin-build/build_tools.sh
10 lines
259 B
C++
10 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;
|
|
}
|
|
|