TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
A simple helper class for analysing text on iOS and OS X. Category extensions on NSString to block enumerate through verbs, nouns, words and sentences.
Methods to return Arrays of verbs, nouns, placenames, personalNames, words and sentences. Great for building search indexes in your apps.
NSString *yourText = ..;
ISLingusticHelper *helper = [ISLinguisticHelper alloc] initWithString:yourText];
NSArray *rootLowerCaseNouns = [helper rootLowerCaseNouns];
NSArray *verbs = [helper verbs];