There are a couple of different ways to remove HTML tags from an NSString in Cocoa.
HTML tags
NSString
Cocoa
One way is to render the string into an
#import "RegexKitLite.h" string text = [html stringByReplacingOccurrencesOfRegex:@"<[^>]+>" withString:@""]