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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:34:20+00:00 2026-05-15T18:34:20+00:00

Using linq xml in c# how would I extract in for a given predecessor

  • 0

Using linq xml in c# how would I extract in for a given predecessor of SetSeg with a certain value in

Eg seatseg num =10 the following Seatassignment loc=??

<top> 
 <SeatSeg>
                  <Num>9</Num>
  </SeatSeg>
  <SeatAssignment>
                  <Loc>032A</Loc>
  </SeatAssignment>
  <SeatSeg>
                  <Num>10</Num>
  </SeatSeg>
  <SeatAssignment>
                  <Loc>033A</Loc>
  </SeatAssignment>
</top>
  • 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-15T18:34:20+00:00Added an answer on May 15, 2026 at 6:34 pm

    I ran this and it writes out 032A.

    string xml = "<top><SeatSeg><Num>9</Num></SeatSeg><SeatAssignment><Loc>032A</Loc></SeatAssignment><SeatSeg><Num>10</Num></SeatSeg><SeatAssignment><Loc>033A</Loc></SeatAssignment></top>";
    int seatNum = 10;
    XDocument xDoc = XDocument.Parse(xml);
    
    string seatLoc = (from seatSeg in xDoc.Element("top").Elements("SeatSeg")
                      where seatSeg.Element("Num").Value == seatNum.ToString() 
                      select seatSeg
                     ).Single().ElementsBeforeSelf().Last().Element("Loc").Value;
    
    Console.WriteLine(seatLoc);
    

    However, looking at the xml, it seems like the following which prints out 033A is what you want

    string xml = "<top><SeatSeg><Num>9</Num></SeatSeg><SeatAssignment><Loc>032A</Loc></SeatAssignment><SeatSeg><Num>10</Num></SeatSeg><SeatAssignment><Loc>033A</Loc></SeatAssignment></top>";
    int seatNum = 10;
    XDocument xDoc = XDocument.Parse(xml);
    
    string seatLoc = (from seatSeg in xDoc.Element("top").Elements("SeatSeg")
                      where seatSeg.Element("Num").Value == seatNum.ToString() 
                      select seatSeg
                     ).Single().ElementsAfterSelf().First().Element("Loc").Value;
    
    Console.WriteLine(seatLoc);
    

    ElementsBeforeSelf() will pull all the preceding siblings. Last() will get the last of the sequence.

    Conversely, ElementsAfterSelf() will pull all the subsequent siblings. First() will get the first of the sequence.

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

Sidebar

Related Questions

I'm trying to find the inner text value of an element using LINQ-to-XML (an
I'm trying to extract some data from XML using Linq to XML, and I
I am struggling with using LINQ to SQL XML. I'm following examples and getting
I am trying to extract values from an XML file using linq to create
I need to create application log file using Linq-To-Xml. I would like to lock
I would like to read/write encrypted XML files using LINQ to XML. Does anyone
using LINQ to XML, this is a sample of my XML <shows> <Show Code=456
I am using Linq to XML for some HTML output files. I need to
I'm using Linq-to-XML to do a simple is this user registered check (no security
How to write binary data into XML using LINQ which is being read from

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.