Arnav Kapoor
Arnav Kapoor
I have implemented a possible solution to this issue, #639 which is along the line suggested by @iago-lito. It only changes how dates of the form `XXXXXXXX` without Date-Order settings...
@Gallaecio one use case is probably words like 'two second', 'a second' which @noviluni mentioned in #6 , where we don't want to parse second as 2nd. Of course, we...
Hi @noviluni so I had begin working on the support for ordinal numbers. The best approach I believe is to create similar structure like the cardinal numbers. One direction was...
Currently ordinal number support exists for only English language. https://github.com/arnavkapoor/number-parser/pull/31#pullrequestreview-461492622 . There needs to be changes to incorporate other languages. One way could be updating the ```_apply_cardinal_conversion``` mentioned here for...
Hi, @Manish-210; glad for the interest in the project. As @Gallaecio has mentioned, one of the objectives was to use number-parser in both price and date parser. The primary bottleneck...
I was thinking a bit about these edge cases 1. twentyone - This seems to be a specific alternate form of the number thus we should probably a dictionary of...
From my experience by working on this project last year there are a number of tools that do allow you to go from Number -> Words like the num2words library,...
Hi @noviluni sorry for the delayed response , I had composed a reply last night but forgot to hit send it seems. 😬 1. I did consider using the approach...