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
Using python 3.10.4
Commas appear to cause w2n to produce hilariously incorrect results. See attached image.
In the screenshot, "five thousand, six hundred" is returned as 130. Removing the comma results in the expected output.
As a workaround, this issue can be bypassed by stripping commas before calling your library: input = re.sub(r',','',input)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using python 3.10.4
Commas appear to cause w2n to produce hilariously incorrect results. See attached image.
In the screenshot, "five thousand, six hundred" is returned as 130. Removing the comma results in the expected output.
As a workaround, this issue can be bypassed by stripping commas before calling your library:
input = re.sub(r',','',input)
The text was updated successfully, but these errors were encountered: