11 lines
210 B
Mathematica
Raw Permalink Normal View History

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