Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4576576
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T20:13:32+00:00 2026-05-21T20:13:32+00:00

I have a requirement to extract all the text that is present in the

  • 0

I have a requirement to extract all the text that is present in the <body> of the html. Sample Html input :-

<html>
    <title>title</title>
    <body>
           <h1> This is a big title.</h1>
           How are doing you?
           <h3> I am fine </h3>
           <img src="abc.jpg"/>
    </body>
</html>

The output should be :-

This is a big title. How are doing you? I am fine

I want to use only HtmlAgility for this purpose. No regular expressions please.

I know how to load HtmlDocument and then using xquery like ‘//body’ we can get body contents. But how do I strip the html as I have shown in output?

Thanks in advance 🙂

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T20:13:33+00:00Added an answer on May 21, 2026 at 8:13 pm

    You can use the body’s InnerText:

    string html = @"
    <html>
        <title>title</title>
        <body>
               <h1> This is a big title.</h1>
               How are doing you?
               <h3> I am fine </h3>
               <img src=""abc.jpg""/>
        </body>
    </html>";
    
    HtmlDocument doc = new HtmlDocument();
    doc.LoadHtml(html);
    string text = doc.DocumentNode.SelectSingleNode("//body").InnerText;
    

    Next, you may want to collapse spaces and new lines:

    text = Regex.Replace(text, @"\s+", " ").Trim();
    

    Note, however, that while it is working in this case, markup such as hello<br>world or hello<i>world</i> will be converted by InnerText to helloworld – removing the tags. It is difficult to solve that issue, as display is ofter determined by the CSS, not just by the markup.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text file as input like this:let say it as xyz.txt TIME
I've a requirement where I have to extract metrics from different Java projects (configured
I have requirement to disable copy/paste/cut operations on a textbox. For this purpose I
In our project we have requirement that, after receiving sms message from third party
In one of my applications I have the requirement to extract resources from a
If I have significant amounts of text and am trying to discover templates that
Here is where I am at this juncture... I have a requirement wherein I
I have a requirement to create an installer that includes third party dll's that
I have string in XML, <italic>a</italic> and I am using xsl:analyze-string to extract all
I have a requirement to extract a distinct subset of rows from a DataTable,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.