Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dadashzadeh/separating-words-stuck-together
- Owner: dadashzadeh
- License: unlicense
- Created: 2023-02-03T00:57:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T01:37:05.000Z (almost 2 years ago)
- Last Synced: 2024-06-28T06:36:39.842Z (5 months ago)
- Topics: persian, python, split, word
- Language: Python
- Homepage:
- Size: 3.33 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 این تست کلمات به هم چسبیده است
```