We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current logic relies on having an upper case letter followed by a whitespace after a period. So the following is fine:
Hello. How are you doing?
While this won't work:
hello. how are you doing?
Solution might involve capitalizing letters after spaces before splitting it but then it won't work with the following sentence:
Hello Mr. Anderson. How are you today?
That will detect three sentences like so:
Maybe certain words are excluded from sentence splitting and therefore are part of the same sentence?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current logic relies on having an upper case letter followed by a whitespace after a period. So the following is fine:
While this won't work:
Solution might involve capitalizing letters after spaces before splitting it but then it won't work with the following sentence:
That will detect three sentences like so:
Maybe certain words are excluded from sentence splitting and therefore are part of the same sentence?
The text was updated successfully, but these errors were encountered: