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
parse()
Small bug / issue. In normal operation the parse() function respects white space around sentence separators ...
>>> parse("foo , bar , baz .") 'foo , bar , baz .'
This is not the case when the white space follows a number ...
>>> parse("one , two , three .") '1, 2, 3.'
Ideally the behaviour would be consistent and respect the original whitespace around any separators / words.
I have implemented a fix and pull request for this (issue #77).
The text was updated successfully, but these errors were encountered:
Fix and test cases for issue scrapinghub#76 - white space around sepa…
fe34fb4
…rators consumed after numbers
Fix and test cases for issue #76 - white space around separators cons…
034d5ef
…umed after numbers (#77)
Close because the PR is merged. Thanks.
Sorry, something went wrong.
No branches or pull requests
Small bug / issue. In normal operation the
parse()
function respects white space around sentence separators ...This is not the case when the white space follows a number ...
Ideally the behaviour would be consistent and respect the original whitespace around any separators / words.
I have implemented a fix and pull request for this (issue #77).
The text was updated successfully, but these errors were encountered: