Hey guys, I have a question. Say I have a huge XML file that goes something like this:
<one>
<two>stuff</two>
<three>stuff</three>
<four>stuff</four>
<five>stuff</five>
</one>
So my question is, what is the best way to check to see if one of those is missing when I'm parsing the file? As in:
<one>
<two>stuff</two>
<three>stuff</three>
<five>stuff</five>
</one>
How do I check to see if four is there (I know the name of the element, so I wouldn't have to search for all of them) Thanks!