We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
>>> a = "nimm den siebten eintrag" >>> b = ovos_number_parser.extract_number_de(a) >>> b >>>
Maybe not all grammatical variants are considered...
Further examples (using strings from module source code):
>>> a = "nimm den siebt eintrag" >>> b = ovos_number_parser.extract_number_de(a) >>> print(b) >>> None
In English a bit different, may help:
>>> a = "take second row" >>> b = ovos_number_parser.extract_number_en(a) >>> print(b) >>> False
Noticeable that in German it is 'None' and in English 'False'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Maybe not all grammatical variants are considered...
Further examples (using strings from module source code):
In English a bit different, may help:
Noticeable that in German it is 'None' and in English 'False'
The text was updated successfully, but these errors were encountered: