Brightspot
Programmer
I have an xml file where the nodes I'm interested in are usually formatted this way:
<abc:start>Yesterday</abc:start>
Sometimes, there are nested tags like this:
<abc:start>
<abc:good ctype="link" id="1">
</abc:good>Tomorrow</abc:start>
I'm stuck with a brain block, sorry to say. I just want the words in the start tag without the information from the nested tag, i.e. "Yesterday" and "Tomorrow". Any ideas for just keeping the info and skipping the nested tags? Oh,yeah, I'm a newbie, too.
<abc:start>Yesterday</abc:start>
Sometimes, there are nested tags like this:
<abc:start>
<abc:good ctype="link" id="1">
</abc:good>Tomorrow</abc:start>
I'm stuck with a brain block, sorry to say. I just want the words in the start tag without the information from the nested tag, i.e. "Yesterday" and "Tomorrow". Any ideas for just keeping the info and skipping the nested tags? Oh,yeah, I'm a newbie, too.