aitelint

Results 17 issues of aitelint

Fix to issue #2964. Added support for "week one" in EN and NL. Added support for "first week" in EN (where, if the year is missing, the start/end dates are...

Replace String manipulation operations in TImexUtility with more efficient Span manipulation operations. For example: var subStr = inputStr.Substring(start, length); --> var subSpan = inputSpan.Slice(start, length);

refactoring
Priority:P3

Add support for the pattern "week" + [WrittenNumber] e.g. "Show sales in the week twelve", Expressions with numbers in digit form like "week 12" are already supported.

enhancement
Priority:P1

Fix to issue #2475. Added support for time expressions with mixed (digit and written) numbers in Portuguese and Spanish. Refactored some of the Spanish time regexes to avoid matching false/inconsistent...

Added support for duration units extraction when preceded by ordinal numbers (#2417). Test cases added to EN and ES DateTimeModels. Method not implemented in Turkish and Hindi (in both languages...

Fix to issue #640 where, in Experimental mode, ambiguous dates are recalculated using the other non-ambiguous date as reference (in DatePeriod and DateTimePeriod). Test cases added to DateTimeModel and DateTimeModelExperimentalMode....

Fix for issues reported in #908. We did not update the pattern "on 5.11" which is currently parsed as "May 11th" instead of "Nov 5th" (as requested in the issue)....

Fix for issue #1820, 5' to be recognized as type=dimension, unit=Foot, value=5. Test case added to DimensionModel

Added support for compound dimension units so that they can be extracted as a single entity. The compound behaviour is controlled by the flag EnableCompoundTypes as requested in #2037. Relevant...

Fixes #2115. Add support for cases like "3 hundred thousand". The fix does not seems to affect other entities. Added test cases to NumberModel.