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 7404571
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:16:26+00:00 2026-05-29T05:16:26+00:00

XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFile); XNamespace nsContent = http://purl.org/rss/1.0/modules/content/; foreach

  • 0
XDocument coordinates = XDocument.Load("http://feeds.feedburner.com/TechCrunch");
System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFile);
XNamespace nsContent = "http://purl.org/rss/1.0/modules/content/";
foreach (var item in coordinates.Descendants("item"))
{
   string link = item.Element("guid").Value;
   string content = item.Element(nsContent + "encoded").Value; //It gets all links, images etc 
}

StreamWriter1.Close();

using this i can get guid element values as well as content:encoded values but the value of content:encoded element gets all the links, tags,

tags etc.

But i want the text only…Means i need the simple text data only and not need to get any img links, links etc.

How can i parse the <p>..</p> tag data in XML ?
Please suggest
Thanks

  • 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-29T05:16:27+00:00Added an answer on May 29, 2026 at 5:16 am

    Well you have HTML embeded in that XML document. The safest thing to do would be to take that HTML and parse it using an HTML parser such as the HTML Agility Pack and go from there. It shouldn’t be that much different. Do note that the HTML is still encoded a bit so you’ll have to decode it first.

    const string url = "http://feeds.feedburner.com/TechCrunch";
    var doc = XDocument.Load(url);
    var items = doc.Descendants("item");
    XNamespace nsContent = "http://purl.org/rss/1.0/modules/content/";
    foreach (var item in items)
    {
        var encodedContent = (string)item.Element(nsContent + "encoded");
        var decodedContent = System.Net.WebUtility.HtmlDecode(encodedContent);
        var html = new HtmlDocument();
        html.LoadHtml(decodedContent);
        var ps = html.DocumentNode.Descendants("p");
        foreach (var p in ps)
        {
            var textContent = p.InnerText;
            // do something with textContent
        }
    }
    

    Unfortunately the HTML doesn’t seem to be very well-formed XML so you won’t be able to use LINQ to XML with that part.

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

Sidebar

Related Questions

XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFile); XNamespace nsContent = http://purl.org/rss/1.0/modules/content/; string
XDocument coordinates = XDocument.Load(http://feeds.feedburner.com/TechCrunch); System.IO.StreamWriter StreamWriter1 = new System.IO.StreamWriter(DestFilePath); foreach (var coordinate in coordinates.Descendants(guid))
I have the following XDocument: <SomeDoc Id=73 Protocol=rahrah xmlns=http://schemas.company.com/rah/rah2/2005/> <Prop1>11111</Prop1> <Prop2>77777</Prop2> <Prop3>88888</Prop3> </SomeDoc> And
I have a XDocument that looks like this: XDocument outputDocument = new XDocument( new
I have got this code: XDocument xdoc = XDocument.Load(URI); XElement root = xdoc.Element(forecast); //get
I have an XDocument and have to remove a node and add the very
I have an XDocument object and the ToString() method returns XML without any indentation.
Hai I have An XDocument .All nodes in this document have an attribute UserId.
How can i return xdocument from wcf service??? what i need to do to
I have a loaded XDocument that I need to grab all the attributes that

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.