aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab7/CONSOLE_OUTPUT_Harris-Toovy.txt
blob: c8c25d46d51aa97c1d18b31bb42cdf665bc9d9df (plain) (blame)
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
This file contains the test results for the main program.

---[Test 1: Adding strings]---

String playground MK1
There are currently 0 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Hello!
There are currently 1 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Testing Testing 123
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
5

C:\Users\jorda\Source\Repos\cst116-lab7-JordanHT-OIT\Debug\CST116F2021-Lab7.exe (process 11996) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .



---[Test 2: Adding & displaying strings]---

String playground MK1
There are currently 0 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Testing 1 2 3
There are currently 1 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Hello world!
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is a test.
There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
2

1   - Testing 1 2 3
2   - Hello world!
3   - This is a test.

There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
5

C:\Users\jorda\Source\Repos\cst116-lab7-JordanHT-OIT\Debug\CST116F2021-Lab7.exe (process 8992) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .



---[Test 3: Substring Finding 1]---

String playground MK1
There are currently 0 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Hello!
There are currently 1 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is a test.
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Oxygen
There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: CST116-01P
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
2

1   - Hello!
2   - This is a test.
3   - Oxygen
4   - CST116-01P

There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
3
Enter string to search: yge
The string "yge" was found in srting "Oxygen" which is in position 3
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
3
Enter string to search: is a
The string "is a" was found in srting "This is a test." which is in position 2
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
5

C:\Users\jorda\Source\Repos\cst116-lab7-JordanHT-OIT\Debug\CST116F2021-Lab7.exe (process 11148) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .



---[Test 4: Substring Finding 2]---

String playground MK1
There are currently 0 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: The first line!
There are currently 1 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is the second line
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Testing this program uses a lot of console space.
There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: Last line of the test
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
3
Enter string to search: ace
The string "ace" was found in srting "Testing this program uses a lot of console space." which is in position 3
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
3
Enter string to search: Last
The string "Last" was found in srting "Last line of the test" which is in position 4
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
3
Enter string to search: Not here
No match found
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
5

C:\Users\jorda\Source\Repos\cst116-lab7-JordanHT-OIT\Debug\CST116F2021-Lab7.exe (process 3316) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .



---[Test 5: Deleting strings]---

String playground MK1
There are currently 0 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is the first line
There are currently 1 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is the second line
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is the third line
There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
1
Enter string: This is the last line
There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
2

1   - This is the first line
2   - This is the second line
3   - This is the third line
4   - This is the last line

There are currently 4 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
4
Select a string to remove: 4
There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
2

1   - This is the first line
2   - This is the second line
3   - This is the third line

There are currently 3 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
4
Select a string to remove: 2
There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
2

1   - This is the first line
2   - This is the third line

There are currently 2 strings in the array.
1) Add a string
2) Print current strings
3) Search for a substring
4) Delete a string
5) Exit
5

C:\Users\jorda\Source\Repos\cst116-lab7-JordanHT-OIT\Debug\CST116F2021-Lab7.exe (process 1324) exited with code 0.
To automatically close the console when debugging stops, enable Tools->Options->Debugging->Automatically close the console when debugging stops.
Press any key to close this window . . .