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