mirror of
https://github.com/google/benchmark.git
synced 2025-03-19 13:40:06 +08:00
9 lines
239 B
C++
9 lines
239 B
C++
|
#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;
|
||
|
}
|
||
|
|