Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dadashzadeh/separating-words-stuck-together

Separating words stuck together for Persian language and en
https://github.com/dadashzadeh/separating-words-stuck-together

persian python split word

Last synced: 3 months ago
JSON representation

Separating words stuck together for Persian language and en

Awesome Lists containing this project

README

        

# separating-words-stuck-together
Separating words stuck together for Persian language and en
```
from word import split
s = split("testtest text2text این تست کلمات به همچسبیدهاست")
print(" ".join(s))
```

output

```
test test text 2 text این تست کلمات به هم چسبیده است
```