Skip to content

Instantly share code, notes, and snippets.

@mdabbagh88
Forked from leighmcculloch/NSString_stripHtml.h
Last active August 29, 2015 14:12
Show Gist options
  • Save mdabbagh88/0f4fc65b7c7416a8d242 to your computer and use it in GitHub Desktop.
Save mdabbagh88/0f4fc65b7c7416a8d242 to your computer and use it in GitHub Desktop.
// NSString_stripHtml.h
// Copyright 2011 Leigh McCulloch. Released under the MIT license.
#import <Foundation/Foundation.h>
@interface NSString (stripHtml)
- (NSString*)stripHtml;
@end
// NSString_stripHtml.m
// Copyright 2011 Leigh McCulloch. Released under the MIT license.
#import "NSString_stripHtml.h"
@interface NSString_stripHtml_XMLParsee : NSObject<NSXMLParserDelegate> {
@private
NSMutableArray* strings;
}
- (NSString*)getCharsFound;
@end
@implementation NSString_stripHtml_XMLParsee
- (id)init {
if((self = [super init])) {
strings = [[NSMutableArray alloc] init];
}
return self;
}
- (void)dealloc {
[strings release];
[super dealloc];
}
- (void)parser:(NSXMLParser*)parser foundCharacters:(NSString*)string {
[strings addObject:string];
}
- (NSString*)getCharsFound {
return [strings componentsJoinedByString:@""];
}
@end
@implementation NSString (stripHtml)
- (NSString*)stripHtml {
// take this string obj and wrap it in a root element to ensure only a single root element exists
// and that any ampersands are escaped to preserve the escaped sequences
NSString* string = [self stringByReplacingOccurrencesOfString:@"&" withString:@"&amp;"];
string = [NSString stringWithFormat:@"<root>%@</root>", string];
// add the string to the xml parser
NSStringEncoding encoding = string.fastestEncoding;
NSData* data = [string dataUsingEncoding:encoding];
NSXMLParser* parser = [[NSXMLParser alloc] initWithData:data];
// parse the content keeping track of any chars found outside tags (this will be the stripped content)
NSString_stripHtml_XMLParsee* parsee = [[NSString_stripHtml_XMLParsee alloc] init];
parser.delegate = parsee;
[parser parse];
// log any errors encountered while parsing
//NSError * error = nil;
//if((error = [parser parserError])) {
// NSLog(@"This is a warning only. There was an error parsing the string to strip HTML. This error may be because the string did not contain valid XML, however the result will likely have been decoded correctly anyway.: %@", error);
//}
// any chars found while parsing are the stripped content
NSString* strippedString = [parsee getCharsFound];
// clean up
[parser release];
[parsee release];
// get the raw text out of the parsee after parsing, and return it
return strippedString;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment