正则表达式,又称正规表示法、常规表示法(英语:Regular Expression,在代码中常简写为regex、regexp或RE),计算机科学的一个概念。正则表达式是使用单个字符串来描述、匹配一系列符合某个句法规则的字符串。--来自百度百科
在c语言中,用regcomp、regexec、regfree 和regerror处理正则表达式。处理正则表达式分三步:
- 编译正则表达式,regcomp;
- 匹配正则表达式,regexec;
- 释放正则表达式,regfree。
四个函数的详细解释:
int regcomp(regex_t *preg, const char *regex, int cflags);
函数说明:
Regcomp将正则表达式字符串regex编译成regex_t的形式,后续regexec以此进行搜索。
参数说明:
Preg:一个regex_t结构体指针。
Regex:正则表达式字符串。
Cflags:是下边四个值或者是他们的或(|)运算。
REG_EXTENDED:使用POSIX扩展正则表达式语法解释的正则表达式。如果没有设置,基本POSIX正则表达式语法。
REG_ICASE:忽略字母的大小写。
REG_NOSUB:不存储匹配的结果。
REG_NEWLINE:对换行符进行“特殊照顾”,后边详细说明。
返回值:
0:表示成功编译;
非0:表示编译失败,用regerror查看失败信息
int regexec(const regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
函数说明:
Regexec用来匹配正则文本。
参数说明:
Preg:由regcomp编译好的regex_t结构体指针,
String:要进行正则匹配的字符串。
Nmatch:regmatch_t结构体数组的大小
Pmatch:regmatch_t结构体数组。用来保存匹配结果的子串位置。
regmatch_t结构体定义如下
typedef struct
{
regoff_t rm_so;
regoff_t rm_eo;
} regmatch_t;
rm_so,它的值如果不为-1,表示匹配的最大子串在字符串中的起始偏移量,rm_eo,表示匹配的最大字串在字符串的结束偏移量。
Eflags: REG_NOTBOL和REG_NOTEOL为两个值之一或二者的或(|)运算,稍后会介绍。
返回值:
0:表示成功编译;
非0:表示编译失败,用regerror查看失败信息
void regfree(regex_t *preg);
函数说明:
用来释放regcomp编译好的内置变量。
参数说明:
Preg:由regcomp编译好的regex_t结构体指针。
size_t regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size);
函数说明:
Regcomp,regexec出错时,会返回error code并且为非0,此时就可以用regerror得到错误信息。
参数说明:
Errcode:Regcomp,regexec出错时的返回值
Preg:经过Regcomp编译的regex_t结构体指针。
Errbuf:错误信息放置的位置。
errbuf_size:错误信息buff的大小。
好现在开始写一个简单的正则匹配小程序。代码如下:
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <sys/types.h>
4 #include <regex.h>
5
6 int main (void)
7 {
8 char ebuff[256];
9 int ret;
10 int cflags;
11 regex_t reg;
12
13 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
14
15 char *test_str = "Hello World";
16 char *reg_str = "H.*";
17
18 ret = regcomp(®, reg_str, cflags);
19 if (ret)
20 {
21 regerror(ret, ®, ebuff, 256);
22 fprintf(stderr, "%s\n", ebuff);
23 goto end;
24 }
25
26 ret = regexec(®, test_str, 0, NULL, 0);
27 if (ret)
28 {
29 regerror(ret, ®, ebuff, 256);
30 fprintf(stderr, "%s\n", ebuff);
31 goto end;
32 }
33
34 regerror(ret, ®, ebuff, 256);
35 fprintf(stderr, "result is:\n%s\n", ebuff);
36
37 end:
38 regfree(®);
39
40 return 0;
41 }
编译,输出结果:
[root@zxy regex]# ./test
result is:
Success
匹配成功。
如果我想保留匹配的结果怎么操作?那就得用到 regmatch_t 结构体了。重新改写上边代码,这时就不能用REG_NOSUB选项了,代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15 regex_t reg;
16 regmatch_t rm[5];
17 char *part_str = NULL;
18
19 cflags = REG_EXTENDED | REG_ICASE;
20
21 char *test_str = "Hello World";
22 char *reg_str = "e(.*)o";
23
24 ret = regcomp(®, reg_str, cflags);
25 if (ret)
26 {
27 regerror(ret, ®, ebuff, 256);
28 fprintf(stderr, "%s\n", ebuff);
29 goto end;
30 }
31
32 ret = regexec(®, test_str, 5, rm, 0);
33 if (ret)
34 {
35 regerror(ret, ®, ebuff, 256);
36 fprintf(stderr, "%s\n", ebuff);
37 goto end;
38 }
39
40 regerror(ret, ®, ebuff, 256);
41 fprintf(stderr, "result is:\n%s\n\n", ebuff);
42
43 for (i=0; i<5; i++)
44 {
45 if (rm[i].rm_so > -1)
46 {
47 part_str = strndup(test_str+rm[i].rm_so, rm[i].rm_eo-rm[i].rm_so);
48 fprintf(stderr, "%s\n", part_str);
49 free(part_str);
50 part_str = NULL;
51 }
52 }
53
54 end:
55 regfree(®);
56
57 return 0;
58 }
编译,输出结果:
[root@zxy regex]# ./test
result is:
Success
ello Wo
llo W
咦??????我明明只要一个匹配结果,为什么会打印两个出来呢???????
原来regmatch_t数组的第一个元素是有特殊意义的:它是用来保存整个正则表达式能匹配的最大子串的起始和结束偏移量。所以我们在设置regmatch_t数组个数的时候一定要记住,它的个数是最大保留结果数+1。
好了,基本的正则运用到此为止了,现在要开始讲讲REG_NEWLINE、REG_NOTBOL和REG_NOTEOL。很多人对这三个参数有所迷惑。我也是,昨天有人问问题,就把自己错误的理解告诉了别人,然后被大神一顿鄙视。我一直认为如果想用^和$这两个匹配模式一定要用到REG_NEWLINE这个参数,其实不然。
首先看下man page对REG_NEWLINE的说明:
REG_NEWLINE
Match-any-character operators don’t match a newline.
A non-matching list ([^...]) not containing a newline does not match a newline.
Match-beginning-of-line operator (^) matches the empty string immediately after a newline, regardless of whether eflags, the execution flags of regexec(), contains REG_NOTBOL.
Match-end-of-line operator ($) matches the empty string immediately before a newline, regardless of whether eflags contains REG_NOTEOL.
我英文不好,google翻译之。。
REG_NEWLINE
1.匹配任何字符的运算符(比如.)不匹配换行('\n');
2.非匹配列表([^...])不包含一个换行符不匹配一个换行符;
3.匹配开始运算符(^)遇到空字符串立即换行,不论在执行regexec()时,eflags是否设置了REG_NOTBOL;
4.匹配结束运算符($)遇到空字符串立即换行,不论在执行regexec()时,eflags是否设置了REG_NOTEOL;
不明白说的是什么,程序测之。。
第一个问题,代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15
16 regex_t reg;
17
18 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
19
20 char *test_str = "Hello World\n";
21 char *reg_str = "Hello World.";
22
23 ret = regcomp(®, reg_str, cflags);
24 if (ret)
25 {
26 regerror(ret, ®, ebuff, 256);
27 fprintf(stderr, "1. %s\n", ebuff);
28 goto end;
29 }
30
31 ret = regexec(®, test_str, 0, NULL, 0);
32 regerror(ret, ®, ebuff, 256);
33 fprintf(stderr, "2. %s\n", ebuff);
34
35 cflags |= REG_NEWLINE;
36
37 ret = regcomp(®, reg_str, cflags);
38 if (ret)
39 {
40 regerror(ret, ®, ebuff, 256);
41 fprintf(stderr, "3. %s\n", ebuff);
42 goto end;
43 }
44
45 ret = regexec(®, test_str, 0, NULL, 0);
46 regerror(ret, ®, ebuff, 256);
47 fprintf(stderr, "4. %s\n", ebuff);
48
49 end:
50 regfree(®);
51
52 return 0;
53 }
编译,运行结果如下:
[root@zxy regex]# ./test
2. Success
4. No match
结果很明显:没有加入REG_NEWLINE的匹配成功,加入的匹配不成功。就是说不加入REG_NEWLINE,任意匹配字符(.)包含'\n',加入则不包含'\n'。
第二个问题,代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15
16 regex_t reg;
17
18 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
19
20 char *test_str = "Hello\nWorld";
21 char *reg_str = "Hello[^ ]";
22
23 ret = regcomp(®, reg_str, cflags);
24 if (ret)
25 {
26 regerror(ret, ®, ebuff, 256);
27 fprintf(stderr, "1. %s\n", ebuff);
28 goto end;
29 }
30
31 ret = regexec(®, test_str, 0, NULL, 0);
32 regerror(ret, ®, ebuff, 256);
33 fprintf(stderr, "2. %s\n", ebuff);
34
35 cflags |= REG_NEWLINE;
36
37 ret = regcomp(®, reg_str, cflags);
38 if (ret)
39 {
40 regerror(ret, ®, ebuff, 256);
41 fprintf(stderr, "3. %s\n", ebuff);
42 goto end;
43 }
44
45 ret = regexec(®, test_str, 0, NULL, 0);
46 regerror(ret, ®, ebuff, 256);
47 fprintf(stderr, "4. %s\n", ebuff);
48
49 end:
50 regfree(®);
51
52 return 0;
53 }
编译,运行结果如下:
[root@zxy regex]# ./test
2. Success
4. No match
结果说明:不加入REG_NEWLINE,在一个不包含'\n'的非列表中,'\n'是不被认作空白符,加入则'\n'是被认作空白符。
第三个问题,代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15
16 regex_t reg;
17
18 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
19
20 char *test_str = "\nHello World";
21 char *reg_str = "^Hello";
22
23 ret = regcomp(®, reg_str, cflags);
24 if (ret)
25 {
26 regerror(ret, ®, ebuff, 256);
27 fprintf(stderr, "1. %s\n", ebuff);
28 goto end;
29 }
30
31 ret = regexec(®, test_str, 0, NULL, 0);
32 regerror(ret, ®, ebuff, 256);
33 fprintf(stderr, "2. %s\n", ebuff);
34
35 cflags |= REG_NEWLINE;
36
37 ret = regcomp(®, reg_str, cflags);
38 if (ret)
39 {
40 regerror(ret, ®, ebuff, 256);
41 fprintf(stderr, "3. %s\n", ebuff);
42 goto end;
43 }
44
45 ret = regexec(®, test_str, 0, NULL, 0);
46 regerror(ret, ®, ebuff, 256);
47 fprintf(stderr, "4. %s\n", ebuff);
48
49 end:
50 regfree(®);
51
52 return 0;
53 }
编译,运行结果如下:
[root@zxy regex]# ./test
2. No match
4. Success
结果说明:不加入REG_NEWLINE,'^'是不忽略'\n'的,加入REG_NEWLINE,'^'是忽略'\n'的。也就是说:不加入REG_NEWLINE,以'\n'开头的字符串是不能用'^'匹配,加入REG_NEWLINE,以'\n'开头的字符串是可以用'^'匹配。
第四个问题,代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15
16 regex_t reg;
17
18 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
19
20 char *test_str = "Hello World\n";
21 char *reg_str = "d$";
22
23 ret = regcomp(®, reg_str, cflags);
24 if (ret)
25 {
26 regerror(ret, ®, ebuff, 256);
27 fprintf(stderr, "1. %s\n", ebuff);
28 goto end;
29 }
30
31 ret = regexec(®, test_str, 0, NULL, 0);
32 regerror(ret, ®, ebuff, 256);
33 fprintf(stderr, "2. %s\n", ebuff);
34
35 cflags |= REG_NEWLINE;
36
37 ret = regcomp(®, reg_str, cflags);
38 if (ret)
39 {
40 regerror(ret, ®, ebuff, 256);
41 fprintf(stderr, "3. %s\n", ebuff);
42 goto end;
43 }
44
45 ret = regexec(®, test_str, 0, NULL, 0);
46 regerror(ret, ®, ebuff, 256);
47 fprintf(stderr, "4. %s\n", ebuff);
48
49 end:
50 regfree(®);
51
52 return 0;
53 }
编译,运行结果如下:
[root@zxy regex]# ./test
2. No match
4. Success
结果说明:不加入REG_NEWLINE,'$'是不忽略'\n'的,加入REG_NEWLINE,'$'是忽略'\n'的。也就是说:不加入REG_NEWLINE,以'\n'结尾的字符串是不能用'$'匹配,加入REG_NEWLINE,以'\n'开头的字符串是可以用'$'匹配。
好,REG_NEWLINE选项测试到此结束。总结下:
对于REG_NEWLINE选项,1.使用任意匹配符(.)时,任意匹配符不会包含'\n';2.对于一个不含有'\n'的非列表,会把'\n'认作空白符。3.对于以'\n'开头或结尾的字符串,会忽略'\n'。使'^'和'$'可以使用。
现在开始说下REG_NOTBOL和REG_NOTEOL,首先看下man page对这两选项的说明:
REG_NOTBOL
The match-beginning-of-line operator always fails to match (but see the compilation flag REG_NEWLINE above) This flag may be used when different portions of a string are passed to regexec() and the beginning of the string should not be interpreted as the beginning of the line.
REG_NOTEOL
The match-end-of-line operator always fails to match (but see the compilation flag REG_NEWLINE above)
继续googling。
REG_NOTBOL
匹配开始操作符(^)会经常匹配失败(但是要考虑REG_NEWLINE),这个标志被用在当一个字符串的不同位置被传入到regexec()时,这个位置不应该被解释为该整个字符串的开始位置。
REG_NOTEOL
匹配结束操作符($)会经常失败(但是要考虑REG_NEWLINE)。(这个标志被用在当一个字符串的不同位置被传入到regexec()时,即使满足匹配结束作符,也不应该被解释为以某字符(串)为结束的)。
好吧,继续测试,第一个问题代码如下:
1 #define _GNU_SOURCE
2 #include <string.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <sys/types.h>
6 #include <regex.h>
7
8 int main (void)
9 {
10
11 int i;
12 char ebuff[256];
13 int ret;
14 int cflags;
15
16 regex_t reg;
17
18 cflags = REG_EXTENDED | REG_ICASE | REG_NOSUB;
19
20 char *test_str = "Hello World\n";
21 char *reg_str = "^e";
22
23 ret = regcomp(®, reg_str, cflags);
24 if (ret)
25 {
26 regerror(ret, ®, ebuff, 256);
27 fprintf(stderr, "1. %s\n", ebuff);
28 goto end;
29 }
30
31 ret = regexec(®, test_str+1, 0, NULL, 0);
32 regerror(ret, ®, ebuff, 256);
33 fprintf(stderr, "2. %s\n", ebuff);
34
35 ret = regexec(®, test_str+1, 0, NULL, REG_NOTBOL);
36 regerror(ret, ®, ebuff, 256);
37 fprintf(stderr, "4. %s\n", ebuff);
38
39 end:
40 regfree(®);
41
42 return 0;
43 }
编译,运行结果如下:
[root@zxy regex]# ./test
2. Success
4. No match
结果说明:不加入REG_NOTBOL,一个字符串的不同位置是可以用'^'进行匹配,加入REG_NOTBOL,则不能进行匹配。
第二个问题,我实在理解不了了,网上介绍的全是没有经过验证的。。。。。。