A
alex.cline
I'm trying to write an XSL parser to extract all information between
two sibling nodes. The problem is, the documents are very poorly
formatted and that's where I'm running into difficulty. Here is an
example of the layout of the document:
<root>
<header>
content
</header>
<node />
content to extract.
<node />
<footer>
content
</footer>
</root>
I'm trying to extract all content between the two <node /> elements.
The data can include either text or other nested elements.
Thank you.
-- Alex
two sibling nodes. The problem is, the documents are very poorly
formatted and that's where I'm running into difficulty. Here is an
example of the layout of the document:
<root>
<header>
content
</header>
<node />
content to extract.
<node />
<footer>
content
</footer>
</root>
I'm trying to extract all content between the two <node /> elements.
The data can include either text or other nested elements.
Thank you.
-- Alex