Resolve regular expression engines
diff --git a/cmake/std_regex.cpp b/cmake/std_regex.cpp
new file mode 100644
index 0000000..4f227d4
--- /dev/null
+++ b/cmake/std_regex.cpp
@@ -0,0 +1,8 @@
+#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;
+}
+