-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.txt
94 lines (71 loc) · 1.34 KB
/
output.txt
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
85
86
87
88
89
90
91
92
93
94
SINGLE TEXT - SINGLE COMPLEX PATTERN MATCHING
Text :
a
--- Matched Pattern :
ab?[cd]*
@ 1st character
Resetting NFA in Module with pattern : ab?[cd]*
--------------------------------------------------
MULTIPLE INDEPENDENT PARALLEL TEXT-PATTERN MATCHING
Text :
acdbd
--- Matched Pattern :
ab?[cd]*
@ 1st character
Text :
acdbd
--- Matched Pattern :
ab?[cd]*
@ 2nd character
Text :
acdbd
--- Matched Pattern :
ab?[cd]*
@ 3rd character
Text :
dafabdef
--- Matched Pattern :
[abc]{0,3}d[e,f]?
@ 6th character
Text :
abdcabcc
--- Matched Pattern :
abc+
@ 7th character
Text :
dafabdef
--- Matched Pattern :
[abc]{0,3}d[e,f]?
@ 7th character
Text :
abdcabcc
--- Matched Pattern :
abc+
@ 8th character
Text :
c0a9hello0
--- Matched Pattern :
[a-zA-Z][0-9]hello
@ 9th character
Resetting NFA in all modules parallely
--------------------------------------------------
SINGLE TEXT - MULTIPLE COMPLEX PATTERNS MATCHING IN PARALLEL
Text :
abcdefghijklmnopqrtuvwxyz
--- Matched Pattern(s) :
ab?[cd]*
@ 1st character
--- Matched Pattern(s) :
ab?[cd]*
@ 2nd character
--- Matched Pattern(s) :
abc+
ab?[cd]*
@ 3rd character
--- Matched Pattern(s) :
[abc]{0,3}d[e,f]?
ab?[cd]*
@ 4th character
--- Matched Pattern(s) :
[abc]{0,3}d[e,f]?
@ 5th character