__regex.hpp 205 B

12345678910
  1. #ifndef TOOL_REGEX_H_
  2. #define TOOL_REGEX_H_
  3. #include "regex.hpp"
  4. struct af_Regex {
  5. pcre2_code *re; // 正则表达式
  6. char *pattern; // 正则表达式的字符串
  7. };
  8. #endif //TOOL_REGEX_H_