ApexNLP icon indicating copy to clipboard operation
ApexNLP copied to clipboard

A natural language event parser for java and android.

Results 13 ApexNLP issues
Sort by recently updated
recently updated
newest added

•Family Dine Out on the 2nd Friday of every month at 6-9p •Meet John on monday at Mall •Tennis on Mondays, Tuesdays, Fridays at 10 •Paying bills day repeat on...

This is my code: ``` Event event = Apex.nlp("fa", "نهار فردا بعد از ظهر ساعت ۷"); Log.d("NLP", event.title()); ``` and this is the exception details ``` java.lang.RuntimeException: Unable to start...

**Title is not extracted in any case.** ![screen shot 2017-09-12 at 15 24 21](https://user-images.githubusercontent.com/3000218/30319804-7cc188a8-97ce-11e7-9c8f-291626d4b4c8.png) I've used `compile 'org.threeten:threetenbp:1.3.3'` because `compile 'com.jakewharton.threetenabp:threetenabp:1.0.5'` doesn't work _(Look at my other #32 issue I've...

``` { "title" : "Lunch", "location" : "", "startDateTime" : "2017/4/13 12:00", "endDateTime" : "2017/4/13 12:30", "isAllDay" : false, "recurrence" : null } ``` `location` is said to be returned...

I just tried to extract events from a mail message. However, the mobile no in the mail is tokenized as int and generated number format exception `java.lang.NumberFormatException: Invalid int: "98xxxxxx56"...

I tried most of those examples and none of them worked. ``` class ApexAPI { static { Apex.init(new Apex.ApexBuilder() .addParser("en", new EnglishParser()) .build()); } Event getEvent(String sentence) { return Apex.nlp("en",...

![screen shot 2017-09-12 at 15 31 44](https://user-images.githubusercontent.com/3000218/30320221-b1373280-97cf-11e7-92fd-081353d11efc.png) Adding the `compile 'com.jakewharton.threetenabp:threetenabp:1.0.5'` dependency doesn't work. It produces the **duplicate error** as mentioned in the screenshot.