TeaAddictedGeek
Programmer
I have an overly complicated bit of XML that I have to analyze using an XSLT stylesheet, and parts of it go like this:
<parent_node>
Lots and lots and lots and lots of text here
<child_node1>more text</child_node1>
<child_node2>
even more text
<child_node3>the text never ends!</child_node3>
</child_node2>
</parent_node>
How do I get it to output the text inside of parent_node via the XSL tags without accidently repeating what is in child_node1? I can't seem to get that part to work. I'm a little new at this I admit, and I checked the archives but couldn't find an answer.
Thanks!
<parent_node>
Lots and lots and lots and lots of text here
<child_node1>more text</child_node1>
<child_node2>
even more text
<child_node3>the text never ends!</child_node3>
</child_node2>
</parent_node>
How do I get it to output the text inside of parent_node via the XSL tags without accidently repeating what is in child_node1? I can't seem to get that part to work. I'm a little new at this I admit, and I checked the archives but couldn't find an answer.
Thanks!