RegExCategories 1.0

RegExCategories 1.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Dec 2014

Maintained by .



  • By
  • Josh Wright

Categories on NSRegularExpression that make regular expressions more concise in Objective-C.

This project makes regular expressions easy in Objective-C. Here is an example where four lines of code become one:

// Without this library NSString* string = @"I have 2 dogs."; NSRegularExpression *regex = [NSRegularExpression regular ExpressionWithPattern:@"\d+" options:NSRegularExpressionCaseInsensitive error:&error]; NSTextCheckingResult *match = [regex firstMatchInString:string options:0 range:NSMakeRange(0, [string length])]; BOOL isMatch = match != nil;

// With this library BOOL isMatch = [@"I have 2 dogs." isMatch:RX(@"\d+")];

Installation

pod 'RegExCategories'

Authors

Josh Wright

License

MIT