Olivier Marty hace 8 años
padre
commit
da2152307e
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. 5 0
      code/Tips.cpp

+ 5 - 0
code/Tips.cpp

@@ -1,2 +1,7 @@
 // change stack size, in bytes
 #pragma comment(linker, "/STACK:33777216")
+
+// regex
+regex reg(R"[a-z]+");
+string str("couCOU");
+bool match = regex_match(str, reg));