Click here to Skip to main content
Licence CPOL
First Posted 18 Jul 2007
Views 59,430
Downloads 1,070
Bookmarked 62 times

HTML Tag Stripper

By | 8 Nov 2007 | Article
A fast way to strip the HTML tags from an HTML fragment and leave only the visible text

Introduction

This article explains a simple method of stripping HTML tags that is similar to the PHP strip_tags() function. This is usually useful in CMS systems where you need to store the text-only version of, for example, an article in order to allow a full-text search through all articles.

Background

Stripping the tags, in this problem's context, means keeping only the visible text of an HTML document or HTML fragment. This means excluding all HTML comments and all HTML <script>, <style> and <noscript> blocks.

I must also mention the fact that the text resulting from this stripping can be processed even more by replacing named HTML entities such as &quot;, &amp;, &copy;, &nbsp;, etc. and unnamed HTML entities such as &#355; with their corresponding characters. Just set the method's respective parameters, i.e. replaceNamedEntities and replaceNumberedEntities, to true. Bear in mind, however, that these can slow the execution time down significantly.

Using the Code

There is only one method involved in this operation. I called it, without any inspiration, HtmlStripTags. It accepts three parameters:

  • htmlContent: the HTML content to process
  • replaceNamedEntities: whether to replace the HTML named entities such as &nbsp; and others
  • replaceNumberedEntities: whether to replace the HTML numbered entities, i.e. Unicode HTML representations such as &#355;
public static string HtmlStripTags(string htmlContent, 
    bool replaceNamedEntities, bool replaceNumberedEntities)
{
    if (htmlContent == null)
        return null;
    htmlContent = htmlContent.Trim();
    if (htmlContent == string.Empty)
        return string.Empty;

    int bodyStartTagIdx = htmlContent.IndexOf("<body", 
        StringComparison.CurrentCultureIgnoreCase);
    int bodyEndTagIdx = htmlContent.IndexOf("</body>", 
        StringComparison.CurrentCultureIgnoreCase);

    int startIdx = 0, endIdx = htmlContent.Length - 1;
    if (bodyStartTagIdx >= 0)
        startIdx = bodyStartTagIdx;
    if (bodyEndTagIdx >= 0)
        endIdx = bodyEndTagIdx;

    bool insideTag = false,
        insideAttributeValue = false,
        insideHtmlComment = false,
        insideScriptBlock = false,
        insideNoScriptBlock = false,
        insideStyleBlock = false;
    char attributeValueDelimiter = '"';

    StringBuilder sb = new StringBuilder(htmlContent.Length);
    for (int i = startIdx; i <= endIdx; i++)
    {

        // html comment block
        if (!insideHtmlComment)
        {
            if (i + 3 < htmlContent.Length &&
                htmlContent[i] == '<' &&
                ...
                ...
                ...

Points of Interest

I avoided using Regular Expressions in order to achieve maximum performance. RegExs are not yet .NET Framework's strongest point. Moreover, I considered this task simple enough to not require such a universal tool. I ran benchmark tests comparing this implementation to another one presented here at CodeProject.com, Covert HTML to Plain Text, which uses mainly Regular Expressions. I found that when parsing large HTML contents (80+ KB) without replacing any HTML entities, it could yet give 5x times better performance, i.e. ~ 5 microseconds on a Intel Core Duo @ 1,83GHz with 1GB RAM. Of course, it is less elegant than using Regular Expressions. I simply maximized the performance.

History

  • 18 July, 2007 -- Original version posted
  • 8 November, 2007 -- Article content and downloads updated

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Andrei Rinea

Software Developer (Senior)
IBM, Business Analytics
Romania Romania

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 4 Pinmemberrcardare6:36 4 Jul '11  
GeneralNice Code Pinmembersweet_gangster_boy9:53 13 May '10  
Questionpossible to skip some tags? PinmemberSelArom19:38 1 Jun '09  
Questioncool code PinmemberThea Ganoe13:55 8 Nov '07  
AnswerRe: cool code PinmemberAndrei Rinea23:13 8 Nov '07  
Questionwhat is so special on position 4163 PinmemberKaldor Amir21:15 24 Jul '07  
AnswerRe: what is so special on position 4163 PinmemberAndrei Rinea21:54 24 Jul '07  
QuestionWhy Not RegEx? PinPopularmemberthund3rstruck18:50 21 Jul '07  
AnswerRe: Why Not RegEx? PinsitebuilderUwe Keim0:53 22 Jul '07  
AnswerRe: Why Not RegEx? PinmemberAndrei Rinea11:24 22 Jul '07  
GeneralRe: Why Not RegEx? Pinmemberthund3rstruck18:29 22 Jul '07  
GeneralRe: Why Not RegEx? PinmemberAndrei Rinea0:03 23 Jul '07  
AnswerRe: Why Not RegEx? PinmemberGleb Dolgich9:29 11 Nov '07  
GeneralRe: Why Not RegEx? PinmemberAndrei Rinea0:25 12 Nov '07  
GeneralRe: Why Not RegEx? Pinmembersebbie(r)0:07 13 Jun '08  
GeneralRe: Why Not RegEx? PinmemberKasim P4:12 13 Nov '07  
AnswerRe: Why Not RegEx? PinmemberDaniel Penrod14:57 22 Nov '07  
GeneralAs is, requires .NET 2 or above PinmemberFred_Smith13:12 21 Jul '07  
GeneralRe: As is, requires .NET 2 or above PinmemberAndrei Rinea11:10 22 Jul '07  
GeneralAlso see... PinmemberRavi Bhavnani2:55 19 Jul '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 8 Nov 2007
Article Copyright 2007 by Andrei Rinea
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid