Flutter-Bounty-Hunters / nlp

Natural language processing (NLP) for Dart
MIT License
14 stars 1 forks source link

Datetime period / Time period tests pass #5

Closed angelosilvestre closed 7 months ago

angelosilvestre commented 7 months ago

Datetime period / Time period tests pass

This PR ports the datetime period extract/parser and the time period extractor/parser.

I modified the test cases changing some words like week days and month names to lowercase, because the .NET version ignores the case while comparing the output.

For example: changed "Fri" to "fri", "Jan" to "jan", "PM" to "pm".

matthew-carroll commented 7 months ago

I modified the test cases changing some words like week days and month names to lowercase, because the .NET version ignores the case while comparing the output.

Do you mean you changed the regex? If so, which file can I see this?

angelosilvestre commented 7 months ago

No, the regexes remain the same. Only the expected values of some test cases were changed.