-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegexp.cpp
More file actions
31 lines (26 loc) · 717 Bytes
/
Copy pathRegexp.cpp
File metadata and controls
31 lines (26 loc) · 717 Bytes
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
#include <iostream>
#include "Regexp.h"
Regexp::Regexp(const string &pattern)
{
SyntaxAnalyzer sa(LexicalAnalyzer::analyze(pattern));
sv = sa.analyze();
/*for (auto it = sv.begin(); it < sv.end(); it++) {
cout << "Lexeme: " << it->lexeme << endl;
}*/
}
bool Regexp::match(const string &target) const
{
RegexpChecker rc(&sv, &target, target.begin());
return rc.check().status;
}
rc_result Regexp::search(const string &target) const
{
for (auto tit = target.begin(); tit < target.end(); tit++) {
RegexpChecker rc(&sv, &target, tit, true);
rc_result r = rc.check();
if (r.status) {
return r;
}
}
return rc_result {false, ""};
}