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
I would imagine the safest way would just be to parse for <>s, no? Loop through the entire string, and copy anything not enclosed in <>s to a new string.