-
Notifications
You must be signed in to change notification settings - Fork 200
/
RegExCategories.h
450 lines (337 loc) · 11.6 KB
/
RegExCategories.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
//
// RegExCategories.h
//
// https://github.com/bendytree/Objective-C-RegEx-Categories
//
//
// The MIT License (MIT)
//
// Copyright (c) 2013 Josh Wright <@BendyTree>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
//
#import <Foundation/Foundation.h>
/********************************************************/
/*********************** MACROS *************************/
/********************************************************/
/*
* By default, we create an alias for NSRegularExpression
* called `Rx` and creates a macro `RX()` for quick regex creation.
*
* If you don't want these macros, add the following statement
* before you include this library:
*
* #define DisableRegExCategoriesMacros
*/
/**
* Creates a macro (alias) for NSRegularExpression named `Rx`.
*
* ie.
* NSRegularExpression* rx = [[Rx alloc] initWithPattern:@"\d+" options:0 error:nil];
*/
#ifndef DisableRegExCategoriesMacros
#define Rx NSRegularExpression
#endif
/**
* Creates a macro (alias) for NSRegularExpression named `Rx`.
*
* ie.
* NSRegularExpression* rx = [[Rx alloc] initWithPattern:@"\d+" options:0 error:nil];
*/
#ifndef DisableRegExCategoriesMacros
#define RX(pattern) [[NSRegularExpression alloc] initWithPattern:pattern]
#endif
/********************************************************/
/******************* MATCH OBJECTS **********************/
/********************************************************/
/**
* RxMatch represents a single match. It contains the
* matched value, range, sub groups, and the original
* string.
*/
@interface RxMatch : NSObject
@property (nonatomic, copy) NSString* value; /* The substring that matched the expression. */
@property (nonatomic, assign) NSRange range; /* The range of the original string that was matched. */
@property (nonatomic, copy) NSArray* groups; /* Each object is an RxMatchGroup. */
@property (nonatomic, copy) NSString* original; /* The full original string that was matched against. */
@end
@interface RxMatchGroup : NSObject
@property (nonatomic, copy) NSString* value;
@property (nonatomic, assign) NSRange range;
@end
/**
* Extend NSRegularExpression.
*/
@interface NSRegularExpression (ObjectiveCRegexCategories)
/*******************************************************/
/******************* INITIALIZATION ********************/
/*******************************************************/
/**
* Initialize an Rx object from a string.
*
* ie.
* Rx* rx = [[Rx alloc] initWithString:@"\d+"];
*
* Swift:
* var rx = NSRegularExpression(pattern:"\d+");
*/
- (NSRegularExpression*) initWithPattern:(NSString*)pattern;
/**
* Initialize an Rx object from a string.
*
* ie.
* Rx* rx = [Rx rx:@"\d+"];
*
* Swift:
* var rx = NSRegularExpression.rx("\d+");
*/
+ (NSRegularExpression*) rx:(NSString*)pattern;
/**
* Initialize an Rx object from a string. By default, NSRegularExpression
* is case sensitive, but this signature allows you to change that.
*
* ie.
* Rx* rx = [Rx rx:@"\d+" ignoreCase:YES];
*
* Swift:
* var rx = NSRegularExpression.rx("\d+", ignoreCase: true);
*/
+ (NSRegularExpression*) rx:(NSString*)pattern ignoreCase:(BOOL)ignoreCase;
/**
* Initialize an Rx object from a string and options.
*
* ie.
* Rx* rx = [Rx rx:@"\d+" options:NSRegularExpressionCaseInsensitive];
*
* Swift:
* var rx = NSRegularExpression.rx("\d+", options: .CaseInsensitive);
*/
+ (NSRegularExpression*) rx:(NSString*)pattern options:(NSRegularExpressionOptions)options;
/*******************************************************/
/********************** IS MATCH ***********************/
/*******************************************************/
/**
* Returns true if the string matches the regex. May also
* be called on NSString as [@"\d" isMatch:rx].
*
* ie.
* Rx* rx = RX(@"\d+");
* BOOL isMatch = [rx isMatch:@"Dog #1"]; // => true
*
* Swift:
* var rx = NSRegularExpression.rx("\d+");
* var isMatch = rx.isMatch("Dog #1"); // => true
*/
- (BOOL) isMatch:(NSString*)matchee;
/**
* Returns the index of the first match of the passed string.
*
* ie.
* int i = [RX(@"\d+") indexOf:@"Buy 1 dog or buy 2?"]; // => 4
*/
- (int) indexOf:(NSString*)str;
/**
* Splits a string using the regex to identify delimeters. Returns
* an NSArray of NSStrings.
*
* ie.
* NSArray* pieces = [RX(@"[ ,]") split:@"A dog,cat"];
* => @[@"A", @"dog", @"cat"]
*/
- (NSArray*) split:(NSString*)str;
/**
* Replaces all occurrences in a string with a replacement string.
*
* ie.
* NSString* result = [RX(@"ruf+") replace:@"ruf ruff!" with:@"meow"];
* => @"meow meow!"
*/
- (NSString*) replace:(NSString*)string with:(NSString*)replacement;
/**
* Replaces all occurrences of a regex using a block. The block receives the match
* and should return the replacement.
*
* ie.
* NSString* result = [RX(@"[A-Z]+") replace:@"i love COW" withBlock:^(NSString*){ return @"lamp"; }];
* => @"i love lamp"
*/
- (NSString*) replace:(NSString*)string withBlock:(NSString*(^)(NSString* match))replacer;
/**
* Replaces all occurrences of a regex using a block. The block receives a RxMatch object
* that contains all the details of the match and should return a string
* which is what the match is replaced with.
*
* ie.
* NSString* result = [RX(@"\\w+") replace:@"hi bud" withDetailsBlock:^(RxMatch* match){ return [NSString stringWithFormat:@"%i", match.value.length]; }];
* => @"2 3"
*/
- (NSString*) replace:(NSString *)string withDetailsBlock:(NSString*(^)(RxMatch* match))replacer;
/**
* Returns an array of matched root strings with no other match information.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSArray* matches = [RX(@"\\w+[@]\\w+[.](\\w+)") matches:str];
* => @[ @"[email protected]", @"[email protected]" ]
*/
- (NSArray*) matches:(NSString*)str;
/**
* Returns a string which is the first match of the NSRegularExpression.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSString* match = [RX(@"\\w+[@]\\w+[.](\\w+)") firstMatch:str];
* => @"[email protected]"
*/
- (NSString*) firstMatch:(NSString*)str;
/**
* Returns an NSArray of RxMatch* objects. Each match contains the matched
* value, range, groups, etc.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSArray* matches = [str matchesWithDetails:RX(@"\\w+[@]\\w+[.](\\w+)")];
*/
- (NSArray*) matchesWithDetails:(NSString*)str;
/**
* Returns the first match as an RxMatch* object.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* Rx* rx = RX(@"\\w+[@]\\w+[.](\\w+)");
* RxMatch* match = [rx firstMatchWithDetails:str];
*/
- (RxMatch*) firstMatchWithDetails:(NSString*)str;
@end
/**
* A category on NSString to make it easy to use
* Rx in simple operations.
*/
@interface NSString (ObjectiveCRegexCategories)
/**
* Initialize an NSRegularExpression object from a string.
*
* ie.
* NSRegularExpression* rx = [@"\d+" toRx];
*/
- (NSRegularExpression*) toRx;
/**
* Initialize an NSRegularExpression object from a string with
* a flag denoting case-sensitivity. By default, NSRegularExpression
* is case sensitive.
*
* ie.
* NSRegularExpression* rx = [@"\d+" toRxIgnoreCase:YES];
*/
- (NSRegularExpression*) toRxIgnoreCase:(BOOL)ignoreCase;
/**
* Initialize an NSRegularExpression object from a string with options.
*
* ie.
* NSRegularExpression* rx = [@"\d+" toRxWithOptions:NSRegularExpressionCaseInsensitive];
*/
- (NSRegularExpression*) toRxWithOptions:(NSRegularExpressionOptions)options;
/**
* Returns true if the string matches the regex. May also
* be called as on Rx as [rx isMatch:@"some string"].
*
* ie.
* BOOL isMatch = [@"Dog #1" isMatch:RX(@"\d+")]; // => true
*/
- (BOOL) isMatch:(NSRegularExpression*)rx;
/**
* Returns the index of the first match according to
* the regex passed in.
*
* ie.
* int i = [@"Buy 1 dog or buy 2?" indexOf:RX(@"\d+")]; // => 4
*/
- (int) indexOf:(NSRegularExpression*)rx;
/**
* Splits a string using the regex to identify delimeters. Returns
* an NSArray of NSStrings.
*
* ie.
* NSArray* pieces = [@"A dog,cat" split:RX(@"[ ,]")];
* => @[@"A", @"dog", @"cat"]
*/
- (NSArray*) split:(NSRegularExpression*)rx;
/**
* Replaces all occurrences of a regex with a replacement string.
*
* ie.
* NSString* result = [@"ruf ruff!" replace:RX(@"ruf+") with:@"meow"];
* => @"meow meow!"
*/
- (NSString*) replace:(NSRegularExpression*)rx with:(NSString*)replacement;
/**
* Replaces all occurrences of a regex using a block. The block receives the match
* and should return the replacement.
*
* ie.
* NSString* result = [@"i love COW" replace:RX(@"[A-Z]+") withBlock:^(NSString*){ return @"lamp"; }];
* => @"i love lamp"
*/
- (NSString*) replace:(NSRegularExpression *)rx withBlock:(NSString*(^)(NSString* match))replacer;
/**
* Replaces all occurrences of a regex using a block. The block receives an RxMatch
* object which contains all of the details for each match and should return a string
* which is what the match is replaced with.
*
* ie.
* NSString* result = [@"hi bud" replace:RX(@"\\w+") withDetailsBlock:^(RxMatch* match){ return [NSString stringWithFormat:@"%i", match.value.length]; }];
* => @"2 3"
*/
- (NSString*) replace:(NSRegularExpression *)rx withDetailsBlock:(NSString*(^)(RxMatch* match))replacer;
/**
* Returns an array of matched root strings with no other match information.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSArray* matches = [str matches:RX(@"\\w+[@]\\w+[.](\\w+)")];
* => @[ @"[email protected]", @"[email protected]" ]
*/
- (NSArray*) matches:(NSRegularExpression*)rx;
/**
* Returns a string which is the first match of the NSRegularExpression.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSString* match = [str firstMatch:RX(@"\\w+[@]\\w+[.](\\w+)")];
* => @"[email protected]"
*/
- (NSString*) firstMatch:(NSRegularExpression*)rx;
/**
* Returns an NSArray of RxMatch* objects. Each match contains the matched
* value, range, groups, etc.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* NSArray* matches = [str matchesWithDetails:RX(@"\\w+[@]\\w+[.](\\w+)")];
*/
- (NSArray*) matchesWithDetails:(NSRegularExpression*)rx;
/**
* Returns an the first match as an RxMatch* object.
*
* ie.
* NSString* str = @"My email is [email protected] and yours is [email protected]";
* RxMatch* match = [str firstMatchWithDetails:RX(@"\\w+[@]\\w+[.](\\w+)")];
*/
- (RxMatch*) firstMatchWithDetails:(NSRegularExpression*)rx;
@end