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
Thank you for your package: but there is a case which wasn't handled, the case of mixing the numbers and characters.
I tried this: 1- print(parse_number("2.4 million")) It gives None
2- parse_ordinal("2.4 million") It gave None
3- parse("2.4 million") It gave me : 2.4 1000000
My expectation is to give me 2400000 or 2.4*10**6
The text was updated successfully, but these errors were encountered:
@Gallaecio, can I work on this issue?
Sorry, something went wrong.
@kailash360 Please, go ahead!
No branches or pull requests
Thank you for your package: but there is a case which wasn't handled, the case of mixing the numbers and characters.
I tried this:
1- print(parse_number("2.4 million"))
It gives None
2- parse_ordinal("2.4 million")
It gave None
3- parse("2.4 million")
It gave me : 2.4 1000000
My expectation is to give me 2400000 or 2.4*10**6
The text was updated successfully, but these errors were encountered: