Hello there,
I don't know how to word this correctly, but i have a couple XML files that i need to extract certain information from.
The files are already on my computer, so i won't be fetching it off the web anymore if that helps any.
I mainly want to extract the information within the nodes, or everything within/under a parent-node.
Here is an example of what's within the XML file:
<?xml version ="1.0" encoding="uscii"?>
<context id="TwelveMonthEnd">
<entity>
<number>152360</number>
</entity>
<Frame>
<Start>1985-01-01</Start>
<End>1986-01-02</End>
</Frame>
</context>
Then it repeats this for an X amount of times then stops.
The outcome i would like to achieve looks like this:
TwelveMonthEnd | 152360 | 1985-01-01 | 1986-01-02
The pipes don't need to be that wide from the information.
I'm new to XML i've been trying to self teach.
I was able to do some of this, but then after awhile the numbers within the "<Frame>" region started to repeat and thats why i need help.
Thank you.