You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
extract_number() and extract_numbers(), at least in English, go completely haywire when there's more than one decimal number in the input string.
>>>lingua_franca.parse.extract_numbers("two point seven five and three point six")
[2.0, 7.0, 5.0, 3.0, 6.0]
>>>lingua_franca.parse.extract_number("two point seven five and three point six")
2
extract_number()
andextract_numbers()
, at least in English, go completely haywire when there's more than one decimal number in the input string.This may have a common solution with #88 and #92
The text was updated successfully, but these errors were encountered: