- 论坛徽章:
- 0
|
- $ cat reg.c
- #include <stdio.h>
- #include <regex.h>
- #include <string.h>
- int main(int argc, char **argv) {
- regex_t re;
- regmatch_t subs[10];
- char errbuf[256];
- char matched[256];
- char pattern[] = "\\[(.*)]";
- char string[] = "[大家好]";
- int err, i;
- const size_t nmatch = 10;
- size_t len;
- err = regcomp (&re, pattern, REG_EXTENDED);
- if (err)
- {
- len = regerror (err, &re, errbuf, sizeof (errbuf));
- fprintf (stderr, "error: regcomp: %s\n", errbuf);
- exit (1);
- }
- printf ("Total has subexpression: %d\n", re.re_nsub);
- /* execute pattern match */
- err = regexec (&re, string, nmatch, subs, 0);
- if (err == REG_NOMATCH)
- {
- fprintf (stderr, "Sorry, no match ...\n");
- regfree (&re);
- exit (0);
- }
- else if (err)
- {
- len = regerror (err, &re, errbuf, sizeof (errbuf));
- fprintf (stderr, "error: regexec: %s\n", errbuf);
- exit (1);
- }
- /* if no REG_NOMATCH and no error, then pattern matched */
- printf ("\nOK, has matched ...\n\n");
- for (i = 0; i <= re.re_nsub; i++)
- {
- if (i == 0)
- {
- printf ("begin: %d, end: %d, ",subs[i].rm_so, subs[i].rm_eo);
- }
- else
- {
- printf ("subexpression %d begin: %d, end: %d, ", i, subs[i].rm_so, subs[i].rm_eo);
- }
- len = subs[i].rm_eo - subs[i].rm_so;
- memcpy(matched, string + subs[i].rm_so, len);
- matched[len] = '\0';
- printf("match: %s\n", matched);
- }
- regfree(&re);
- exit(0);
- }
- $ gcc -o reg reg.c
- reg.c: In function ‘main’:
- reg.c:21:9: warning: incompatible implicit declaration of built-in function ‘exit’
- reg.c:24:5: warning: format ‘%d’ expects type ‘int’, but argument 2 has type ‘size_t’
- reg.c:31:9: warning: incompatible implicit declaration of built-in function ‘exit’
- reg.c:37:9: warning: incompatible implicit declaration of built-in function ‘exit’
- reg.c:60:5: warning: incompatible implicit declaration of built-in function ‘exit’
- $ ./reg
- Total has subexpression: 1
- OK, has matched ...
- begin: 0, end: 11, match: [大家好]
- subexpression 1 begin: 1, end: 10, match: 大家好
- $
复制代码 |
|