Skip to content

Instantly share code, notes, and snippets.

View IndependentClaws's full-sized avatar

Independent Claws IndependentClaws

View GitHub Profile
@IndependentClaws
IndependentClaws / RangeWord.h
Last active September 16, 2019 06:47
An example of how parsing using regular expression can be used to extract valuable linguistic feature information
@interface RangeWord : NSObject
@property (nonatomic,strong)NSString*wordToken;
@property NSRange wordRange;
-(id)initWith:(NSString*)wordToken andWithRange: (NSRange)rangeInText;
@end