19 lines
387 B
Markdown
19 lines
387 B
Markdown
# Text Splitter
|
|
|
|
***Objectives***
|
|
- [ ] Split the statement into array of words
|
|
- [ ] Split the concat words into other of array
|
|
|
|
***Declaratives***
|
|
- Statement I (split the concat words)
|
|
```text
|
|
myword and youknowaboutitaswell
|
|
```
|
|
- Result as output
|
|
```text
|
|
my word and you know about it as well
|
|
```
|
|
- Result as output in code
|
|
```text
|
|
[my, word, and, you, know, about, it, as, well]
|
|
``` |