11 lines
210 B
Objective-C
11 lines
210 B
Objective-C
#import "NSRegularExpression+Matcheable.h"
|
|
#import "LSRegexMatcher.h"
|
|
|
|
@implementation NSRegularExpression (Matcheable)
|
|
|
|
- (LSMatcher *)matcher {
|
|
return [[LSRegexMatcher alloc] initWithRegex:self];
|
|
}
|
|
|
|
@end
|