19 lines
374 B
Objective-C
19 lines
374 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NSRegularExpression (HTML)
|
|
|
|
// Matches HTML tags
|
|
+ (NSRegularExpression *)wmf_HTMLTagRegularExpression;
|
|
|
|
// Matches HTML entities & etc
|
|
+ (NSRegularExpression *)wmf_HTMLEntityRegularExpression;
|
|
|
|
// Matches ' " ; '
|
|
+ (NSRegularExpression *)wmf_charactersToEscapeForJSRegex;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|