#include <stdio.h>
#include <string.h>
#include <pcre.h>
#define OVECCOUNT 30
#define SRCBUFFER 1024*1024
int main(int argc, char **argv){
pcre *re;
const char *error;
int erroffset;
int ovector[OVECCOUNT];
int rc, i;
if (argc != 2){
fprintf(stderr, "Usage : %s PATTERN\n", argv[0]);
return 1;
}
char *src=malloc(SRCBUFFER);
int srclen = fread(src, sizeof(char), SRCBUFFER, stdin);
re = pcre_compile(argv[1], 0, &error, &erroffset, NULL);
if (re == NULL){
fprintf(stderr, "PCRE compilation failed at offset %d: %s\n", erroffset, error);
return 1;
}
rc = pcre_exec(re, NULL, src, srclen, 0, 0, ovector, OVECCOUNT);
if (rc < 0){
if (rc == PCRE_ERROR_NOMATCH) fprintf(stderr, "Sorry, no match...\n");
else fprintf(stderr, "Matching error %d\n", rc);
return 1;
}
for (i = 0; i < rc; i++){
char *substring_start = src + ovector[2 * i];
int substring_length = ovector[2 * i + 1] - ovector[2 * i];
fprintf(stdout, "%2d: %.*s\n", i, substring_length, substring_start);
}
return 0;
}
运行它
回声“苹果香蕉非洲”| ./program'\ ba \ w + \ b'
并打印
0:苹果
我尝试使用PCRE_MULTILINE选项,但没有用。如何打印所有匹配项?
答案 0 :(得分:2)
听起来你正在寻找的是相当于Perl /g
正则表达式标志,以尽可能多次重复匹配并返回所有匹配的结果。我不相信PCRE有这样的东西。
相反,您需要在pcre_exec
周围添加一个循环。每次调用它时,它都会返回匹配开始和结束的字节偏移量。然后,您希望在匹配结束时从字符串再次运行pcre_exec
。重复,直到pcre_exec
不匹配。