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

  • Home
  • SEARCH
  • 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 863283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T09:17:06+00:00 2026-05-15T09:17:06+00:00

In the following code I am using XPath to find all of the matching

  • 0

In the following code I am using XPath to find all of the matching nodes using XPath, and appending the values to a StringBuilder.

StringBuilder sb = new StringBuilder();
foreach (XmlNode node in this.Data.SelectNodes("ID/item[@id=200]/DAT[1]/line[position()>1]/data[1]/text()"))
{
    sb.Append(node.Value);
}
return sb.ToString();

How do I do the same thing, except using Linq to XML instead? Assume that in the new version, this.Data is an XElement object.

  • 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-15T09:17:06+00:00Added an answer on May 15, 2026 at 9:17 am

    Query syntax would look something like this.

    var nodes = from item in Data.Elements("item")
                where item.Attribute("id").Value == "200"
                let dat = item.Element("DAT")
                from line in dat.Elements("line").Skip(1)
                let data = line.Element("data")
                select data;
    
    var sb = new StringBuilder();
    foreach (var node in nodes)
        sb.Append(node.Value);
    

    … this would get rid of the possible nullref exceptions and would get rid of the foreach loop.

    var nodes = from item in Data.Elements("item")
                let id = item.Attribute("id")
                where id != null && id.Value == "200"
                let dat = item.Element("DAT")
                where dat != null
                from line in dat.Elements("line").Skip(1)
                let data = line.Element("data")
                where data != null
                select data.Value;
    return nodes.Aggregate(new StringBuilder(), (sb, r) => sb.Append(r))
                .ToString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written the following code using node.js and riak-js . I have a
I have a WSP containing a web scope feature with the following code: using
I'm trying to filter an XML file using XPath. The XPath that I'm using
I use the following code to hide and show a box on a bunch
Assume I have the following code: public static class Foo { public static void
I have the following HTML: <html> <head><title>Title</title></head> <body> <div id='div2'> <a href='#'>1</a> <div id='div1'>
I'm trying to use XPath in PHP and I get too many elements. This
I have the following JUnit test. The method that I'm testing is quite simple,
I need to parse through an XML document in the database and search for
So I have a really confusing problem on my hands.. It seems as though

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.