-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsimple_re_match.c
84 lines (77 loc) · 2.02 KB
/
simple_re_match.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <stdio.h>
#include "simple_re_match.h"
/*
Regular expresions:
c matches any literal character c
. matches any single character
^ matches the beginning of the input string
$ matches the end of the input string
* matches zero or more occurrences of the previous character
+ matches one or more occurrences of the previous character
*/
/*
@brief search for regexp anywhere in the text and return the index that matches
@param regular expression string
@param string to perform the regex on
*/
int
match(char *regexp, char *text)
{
if (regexp[0] == '^')
return matchhere(regexp+1, text);
do { //should check if the string is empty
if (matchhere(regexp, text))
return 1;
}while(*text++ != '\0');
return 0;
}
int
matchhere(char *regexp, char *text)
{
if (regexp[0] == '\0')
return 1;
if (regexp[1] == '*')
return matchstar(regexp[0], regexp+2, text);
if (regexp[1] == '+')
return matchplus(regexp[0], regexp+2, text);
if (regexp[0] == '\0' && regexp[1] == '\0')
return *text == '\0';
if (*text != '\0' && (regexp[0] == '.' || regexp[0] == *text))
return matchhere(regexp + 1, text + 1);
return 0;
}
/* matchstar: leftmost longest search for c*regexp */
int
matchstar(int c, char *regexp, char *text)
{
char *t;
for (t = text; *t != '\0' && (*t == c || c == '.'); t++)
;
do { /* * matches zero or more */
if (matchhere(regexp, t))
return 1;
} while (t-- > text);
return 0;
}
int
matchplus(int c, char *regexp, char *text)
{
int i = 0;
do { //a matches one or more instances
if (matchhere(regexp, text))
if (i == 0)
i++;
else
return 1;
} while (*text != '\0' && (*text++ == c || c == '.'));
return 0;
}
int main(){
char *regex = "c+";
char *text = "caglar";
if(match(regex, text))
printf("Ok!\n");
else
printf("No!\n");
return 0;
}