Reputation: 1498
How can I write a program that turns this XML string
<outer>
<inner>
<boom>
<name>John</name>
<address>New York City</address>
</boom>
<boom>
<name>Daniel</name>
<address>Los Angeles</address>
</boom>
<boom>
<name>Joe</name>
<address>Chicago</address>
</boom>
</inner>
</outer>
into this string
name: John
address: New York City
name: Daniel
address: Los Angeles
name: Joe
address: Chicago
Can LINQ make it easier?
Upvotes: 1
Views: 152
Reputation: 13022
With Linq-to-XML:
XDocument document = XDocument.Load("MyDocument.xml"); // Loads the XML document with to use with Linq-to-XML
var booms = from boomElement in document.Descendants("boom") // Go through the collection of boom elements
select String.Format("name: {0}" + Environment.NewLine + "address: {1}", // Format the boom item
boomElement.Element("name").Value, // Gets the name value of the boom element
boomElement.Element("address").Value); // Gets the address value of the boom element
var result = String.Join(Environment.NewLine + Environment.NewLine, booms); // Concatenates all boom items into one string with
To generalize it with any elements in boom
, the idea is the same.
var booms = from boomElement in document.Descendants("boom") // Go through the collection of boom elements
let boolChildren = (from boomElementChild in boomElement.Elements() // Go through the collection of elements in the boom element
select String.Format("{0}: {1}", // Formats the name of the element and its value
boomElementChild.Name.LocalName, // Name of the element
boomElementChild.Value)) // Value of the element
select String.Join(Environment.NewLine, boolChildren); // Concatenate the formated child elements
The first and last lines remains the same.
Upvotes: 8