
This reverts commit 1ee32055ea1dd4db70d1939cbd4f5105c2dce160. We hit additional bot failures; in particular, Fuchsia's seems to be related to how CMakeLists are ingested, see https://ci.chromium.org/ui/p/fuchsia/builders/toolchain.ci/clang-linux-x64/b8830380874445931681/overview
11 lines
259 B
C++
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;
|
|
}
|
|
|