0.pcre_exec 原型: #include <pcre.h> int pcre_exec(const pcre *code, const pcre_extra *extra, const char *subject, int length, int startoffset, int options, int *ovector, int ovecsize); 功能:匹配成功返回非负数,没有匹配返回负数 参数: code 输入参数,用pcre_compile编译好的正则表达结构的指针 ext…