-
Notifications
You must be signed in to change notification settings - Fork 1
/
mini_regexp.cpp
42 lines (34 loc) · 928 Bytes
/
mini_regexp.cpp
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
#ifndef _MINI_REGEXP_CPP_
#define _MINI_REGEXP_CPP_
#include "mini_regexp.hpp"
mini_regexp::mini_regexp()
:regexp(""),target("")
{}
bool mini_regexp::compile(const std::string& regexp_str)
{
_reset();
regexp = regexp_str;
mini_lexer.lexer(regexp, mini_config);
mini_parser.parser(mini_lexer, mini_config);
return false;
}
bool mini_regexp::match(const std::string& match_str,
std::function<void(std::vector<std::string>&, std::vector<std::string>&)> callback)
{
bool flag = false;
target = "\2" + match_str + "\3";
mini_vm.vm(target, mini_parser.Code, mini_config);
if (callback) callback(mini_vm.regex_result.get_matched(), mini_vm.regex_result.get_sub_matched());
return flag;
}
void mini_regexp::_reset()
{
regexp = "";
target = "";
}
void mini_regexp::output_code()
{
std::cout << "RegExp: " << regexp << std::endl;
mini_parser.output_code();
}
#endif