Hello
First of all, thank you for developing such a fantastic project. I'm using it to parse names in a mixed Arabic and English context, and it works great for most cases. However, I've encountered an issue with parsing Arabic names that contain a space
While parsing works seamlessly for names like "abdulsalam ahmed salem," names like "abdul salam ahmed salem" are misinterpreted.
Example:
Input: "abdul salam ahmed salem"
Expected Output:
- first: "abdul salam"
- middle: "ahmed"
- last: "salem"
Actual Output:
- first: "abdul"
- middle: "salam ahmed"
- last: "salem"