Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are a couple of different ways to remove HTML tags from an NSString in Cocoa.

One way is to render the string into an NSAttributedString and then grab the rendered text.

Another way is to use NSXMLDocument's -objectByApplyingXSLTString method to apply an XSLT transform that does it.

Unfortunately, the iPhone doesn't support NSAttributedString or NSXMLDocument. There are too many edge cases and malformed HTML documents for me to feel comfortable using regex or NSScanner. Does anyone have a solution to this?

One suggestion has been to simply look for opening and closing tag characters, this method won't work except for very trivial cases.

For example these cases (from the Perl Cookbook chapter on the same subject) would break this method:

<IMG SRC = "foo.gif" ALT = "A > B">

<!-- <A comment> -->

<script>if (a<b && a>c)</script>

<![INCLUDE CDATA [ >>>>>>>>>>>> ]]>
share|improve this question
You could add a bit of logic to take quotes and apostrophes into account... CDATA would take a bit more work, but the whole point of HTML is that unknown tags can be ignored by the parser; if you treat ALL tags as unknown, then you should just get raw text. – Ben Gottlieb Nov 10 '08 at 17:44
I'd like to comment that a good (but basic) regular expression will definitely not break at your examples. Certainly not if you can guarantee well formed XHTML. I know that you said you can't, but I wonder why ;-) – not really Jake Oct 9 '09 at 12:54
1  
There is Good answer for this question. Flatten HTML using Objective c – vipintj Jul 9 '10 at 9:12
Unfortunately, using NSScanner is damn slow. – steipete Mar 27 '11 at 15:56
Even more unfortunately, the linked NSScanner example only works for trivial html. It fails for every test case I mentioned in my post. – lfalin Jan 2 at 14:35

11 Answers

up vote 111 down vote accepted

A quick and "dirty" (removes everything between < and >) solution, works with iOS >= 3.2:

-(NSString *) stringByStrippingHTML {
  NSRange r;
  NSString *s = [[self copy] autorelease];
  while ((r = [s rangeOfString:@"<[^>]+>" options:NSRegularExpressionSearch]).location != NSNotFound)
    s = [s stringByReplacingCharactersInRange:r withString:@""];
  return s;
}

I have this declared as a category os NSString.

share|improve this answer
2  
Super useful, thanks! – Marky Mar 29 '11 at 20:21
1  
Really useful, thanks for posting! – kmcgrady Feb 25 '12 at 11:03
I'm a complete newb at iPhone development, but can I ask how you use this? – James Apr 26 '12 at 14:29
1  
@James To use the method posted in the solution. You have to create a category for NSString. Look up "Objective-C Category" in Google. Then you add that method in the m file, and the prototype in the h file. When that is all set up, to use it all you have to do is have a string object (Example: NSString *myString = ...) and you call that method on your string object (NSString *strippedString = [myString stringByStrippingHTML];). – Roberto May 2 '12 at 17:40
2  
+1 Great use for regular expressions, but does not cover lots of cases unfortunately. – delirus Jun 18 '12 at 14:53
show 3 more comments

This NSString category uses the NSXMLParser to accurately remove any HTML tags from an NSString. This is a single .m and .h file that can be included into your project easily.

http://blog.mcchouse.com/2011/09/ios-dev-strip-html-tags-from-nsstring.html

You then strip html by doing the following:

Import the header:

#import "NSString_stripHtml.h"

And then call stripHtml:

NSString* mystring = @"<b>Hello</b> World!!";
NSString* stripped = [mystring stripHtml];
// stripped will be = Hello World!!

This also works with malformed HTML that technically isn't XML.

share|improve this answer
2  
Whilst the regular expression (as said by m.kocikowski) is quick and dirty, this is more robust. Example string: @"My test <span font=\"font>name\">html string". This answer returns: My test html string. Regular expression returns: My test name">html string. Whilst this isn't that common, it's just more robust. – DonnaLea Sep 8 '11 at 6:29

Take a look at NSXMLParser. It's a SAX-style parser. You should be able to use it to detect tags or other unwanted elements in the XML document and ignore them, capturing only pure text.

share|improve this answer

If you want to get the content without the html tags from the web page (HTML document) , then use this code inside the UIWebViewDidfinishLoading delegate method.

  NSString *myText = [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.textContent"];
share|improve this answer

use this

NSString *HTMLTags = @"<[^>]*>"; //regex to remove any html tag

NSString *htmlString = @"<html>bla bla</html>";
NSString *stringWithoutHTML = [hstmString stringByReplacingOccurrencesOfRegex:myregex withString:@""];

don't forget to include this in your code : #import "RegexKitLite.h" here is the link to download this API : http://regexkit.sourceforge.net/#Downloads

share|improve this answer

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.

share|improve this answer

This post was really helpful if you've already parsed an XML and don't want to parse the content again.

share|improve this answer

If you are willing to use Three20 framework, it has a category on NSString that adds stringByRemovingHTMLTags method. See NSStringAdditions.h in Three20Core subproject.

share|improve this answer
13  
For god's sake, don't use Three20 for anything. Most bloated and bad commented framework ever. – kompozer Jan 20 '12 at 15:45
#import "RegexKitLite.h"

string text = [html stringByReplacingOccurrencesOfRegex:@"<[^>]+>" withString:@""]
share|improve this answer
1  
HTML isn't a regular language so you shouldn't be trying to parse/strip it with a regular expression. stackoverflow.com/questions/1732348/… – csaunders Dec 7 '11 at 18:34

I've extended the answer by m.kocikowski and tried to make it a bit more efficient by using an NSMutableString. I've also structured it for use in a static Utils class (I know a Category is probably the best design though), and removed the autorelease so it compiles in an ARC project.

Included here in case anybody finds it useful.

.h

+ (NSString *)stringByStrippingHTML:(NSString *)inputString;

.m

+ (NSString *)stringByStrippingHTML:(NSString *)inputString 
{
  NSMutableString *outString;

  if (inputString)
  {
    outString = [[NSMutableString alloc] initWithString:inputString];

    if ([inputString length] > 0)
    {
      NSRange r;

      while ((r = [outString rangeOfString:@"<[^>]+>" options:NSRegularExpressionSearch]).location != NSNotFound)
      {
        [outString deleteCharactersInRange:r];
      }      
    }
  }

  return outString; 
}
share|improve this answer
This method is useful but , if i need to non-strip some tag such as link <a> who i can update this method to fulfill this – wod Mar 30 at 8:06

Here's a blog post that discusses a couple of libraries available for stripping HTML http://sugarmaplesoftware.com/25/strip-html-tags/ Note the comments where others solutions are offered.

share|improve this answer
This is the exact set of comments that I linked to in my question as an example of what would not work. – lfalin Nov 14 '08 at 3:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.