I have an XML file like this;
<Person>
<Name>Jepps</Name>
<NameStart>434</NameStart>
<NameStop>34</NameStop>
<Scenario>No</Scenario>
<More>OK</More>
<Pattern>
<Start>12</Start>
<Stop>1212</Stop>
<Start>1212</Start>
<Stop>121212</Stop>
<Start>434</Start>
<Stop>4444</Stop>
<Start>6665</Start>
<Stop>777</Stop>
<Start>5</Start>
<Stop>454</Stop>
</Pattern>
</Person>
I'm having problems parsing the file, because of the duplicate Start/Stop-tags. I am only able to parse the
first Start and Stop-tags (I.e. "12" and "1212" is the only printed values).
Any ideas on how to parse the other values as well?