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
Parser parser = new Parser();
List<DateGroup> groups = parser.parse("the day before next 10/11/2016");
for (DateGroup group : groups) {
List dates = group.getDates();
}
but it fails with the following exception:
10:21:44.851 [main] DEBUG com.joestelmach.natty.Parser - Could not parse input
org.antlr.runtime.EarlyExitException: null
at com.joestelmach.natty.generated.DateWalker.date_time_alternative(DateWalker.java:540)
at com.joestelmach.natty.generated.DateWalker.parse(DateWalker.java:418)
at com.joestelmach.natty.Parser.singleParse(Parser.java:220)
at com.joestelmach.natty.Parser.parse(Parser.java:100)
at com.joestelmach.natty.Parser.parse(Parser.java:67)
at com.verata.pipeline.api.controller.task.NattyTest.main(NattyTest.java:12)
The text was updated successfully, but these errors were encountered:
I'm trying to parse the following:
but it fails with the following exception:
The text was updated successfully, but these errors were encountered: