number-parser icon indicating copy to clipboard operation
number-parser copied to clipboard

Mixing between digits and character number

Open MarwaMohammad opened this issue 3 years ago • 2 comments

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

MarwaMohammad avatar Apr 20 '21 14:04 MarwaMohammad

@Gallaecio, can I work on this issue?

kailash360 avatar Nov 11 '21 15:11 kailash360

@kailash360 Please, go ahead!

Gallaecio avatar Nov 15 '21 07:11 Gallaecio