mirror of
https://github.com/nlohmann/json
synced 2024-12-04 01:01:05 +00:00
06731b14d7
- Catch 1.12.0 -> 1.12.2 - Google Benchmark 1.3.0 -> 1.4.1
11 lines
259 B
C++
Executable File
11 lines
259 B
C++
Executable File
#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;
|
|
}
|
|
|