ml/research/text/splitter/splitter.md

19 lines
387 B
Markdown
Raw Normal View History

2021-02-02 12:21:10 +07:00
# 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]
```