-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.cc
41 lines (37 loc) · 916 Bytes
/
example.cc
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
//example.cc
// #include "./Regex/Regex.hpp"
#include "Regex.h"
#include <cassert>
#include <iostream>
using namespace std;
int main(void)
{
RE::Regex re;
re.assign("[a-c]{5}");
assert(re.match("bcabb"));
re.assign("[\\w-]*");
assert(re.match("delta-in-hub"));
RE::Regex re2("de\\d{2}ta");
assert(re2.match("de42ta"));
RE::Regex re3("[\\d]{3}");
string tar = ("abc123123aaa21aa321aa");
auto res = re3.search(tar);
cout << res.size() << endl;
for (auto&& i : res)
{
cout << tar << endl;
for (size_t j = 0; j < tar.length(); j++)
{
if (j < i.first)
cout << ' ';
else if (j == i.first)
cout << '^';
else if (j < i.second)
cout << '-';
else if (j == i.second)
cout << '^';
}
cout << endl;
}
return 0;
}