-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregexp.js
187 lines (142 loc) · 4.48 KB
/
regexp.js
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/*
=============================================================================
NOTE:
The use of global variables is not recommended, due to higher risk of errors.
The code below serves only demonstration purposes and could be improved.
==============================================================================
*/
//=======
// INTERN
//=======
// Purpose: Contains a list of used html tags
var HTML_Tags =
{
Span_Search: document.getElementById('code'), // Gets "Search for:" area
Span_Flags: document.getElementById('flags'), // Gets "Use flag(s)" area
Span_Token: document.getElementById('token'), // Gets "Used token:" area
Span_Test: document.getElementById('test'), // Gets "Test" in area "Result"
Span_Match: document.getElementById('match'), // Gets "Match" in area "Result"
Textarea_text:document.getElementById('text') // Gets "Text" area
}
// Purpose: Contains the system solutions which are compared to the user given solution
const Solutions = [];
//=========
// COMMANDS
//=========
// Purpose: Shows the user given token on web browser
function getToken(token)
{
// Showing string value in "Your RegEx Code" area
HTML_Tags.Span_Token.innerHTML += token + " ";
}
// Purpose: Refreshes web page
function deleteAll()
{
location.reload();
}
// Purpose: Compares the user given tokens to system solutions and shows the "match" and "test" results on web page
function start()
{
// Variables
var myExpression = HTML_Tags.Span_Search.value;
var myFlag = HTML_Tags.Span_Flags.value;
var myTokens = HTML_Tags.Span_Token.innerHTML;
var myTestArea = HTML_Tags.Span_Test;
var myMatchArea = HTML_Tags.Span_Match;
var myText = HTML_Tags.Textarea_text.value;
// Checking if any flag is selected
if(myFlag !== "none")
{
var myRegexp = new RegExp(myExpression, myFlag);
}
else
{
var myRegexp = new RegExp(myExpression);
}
//-----START: Comparing system defined regex to user given regex-----//
if(myExpression === "[0-9]+" || myExpression === "[A-Z]+")
{
if( Solutions[0] === myTokens)
{
myTestArea.innerHTML = myRegexp.test(myText);
myMatchArea.innerHTML = myText.match(myRegexp);
//MONITOR
console.table(myText.match(myRegexp))
}
else
{
myTestArea.innerHTML = "No test done, due to failure in used tokens!";
myMatchArea.innerHTML = "No match done, due to failure in used tokens!";
}
}
else if(myExpression === "c+|l+")
{
if( Solutions[1] === myTokens)
{
myTestArea.innerHTML = myRegexp.test(myText);
myMatchArea.innerHTML = myText.match(myRegexp);
//MONITOR
console.table(myText.match(myRegexp))
}
else
{
myTestArea.innerHTML = "No test done, due to failure in used tokens!";
myMatchArea.innerHTML = "No match done, due to failure in used tokens!";
}
}
else if(myExpression === "\\(.+\\)")
{
if( Solutions[2] === myTokens)
{
myTestArea.innerHTML = myRegexp.test(myText);
myMatchArea.innerHTML = myText.match(myRegexp);
//MONITOR
console.table(myText.match(myRegexp))
}
else
{
myTestArea.innerHTML = "No test done, due to failure in used tokens!";
myMatchArea.innerHTML = "No match done, due to failure in used tokens!";
}
}
else if(myExpression === "[A-Za-z]*ion")
{
if( Solutions[3] === myTokens)
{
myTestArea.innerHTML = myRegexp.test(myText);
myMatchArea.innerHTML = myText.match(myRegexp);
//MONITOR
console.table(myText.match(myRegexp))
}
else
{
myTestArea.innerHTML = "No test done, due to failure in used tokens!";
myMatchArea.innerHTML = "No match done, due to failure in used tokens!";
}
}
else if(myExpression === "[^A-Za-z]")
{
if( Solutions[4] === myTokens)
{
myTestArea.innerHTML = myRegexp.test(myText);
myMatchArea.innerHTML = myText.match(myRegexp);
//MONITOR
console.table(myText.match(myRegexp))
}
else
{
myTestArea.innerHTML = "No test done, due to failure in used tokens!";
myMatchArea.innerHTML = "No match done, due to failure in used tokens!";
}
}
//-----END:Comparing system defined regex to user given regex-----//
}
//=============
// INITIALIZING
//=============
// Filling solutions into specific array which will be compared with user given input
Solutions.push("[ ltrStr - ltrStr ] + ");
Solutions.push("ltrStr + | ltrStr + ");
Solutions.push("ltrStr . + ltrStr ");
Solutions.push("[ ltrStr - ltrStr ltrStr - ltrStr ] * ltrStr ltrStr ltrStr ");
Solutions.push("[ ^ ltrStr - ltrStr ltrStr - ltrStr ] ");