R
Rui Maciel
Is it possible to, using the SAX approach, extract the XML content between
an opening and closing tag as if it was a continuous string of text?
For example, let's say we have the following document:
<first>
<second>
<alpha>foo</alpha>
<beta>bar</beta>
</second>
</first>
Is it possible to directly extract the content between <first> and </first>
as if it was a text string?
Thanks in advance
Rui Maciel
an opening and closing tag as if it was a continuous string of text?
For example, let's say we have the following document:
<first>
<second>
<alpha>foo</alpha>
<beta>bar</beta>
</second>
</first>
Is it possible to directly extract the content between <first> and </first>
as if it was a text string?
Thanks in advance
Rui Maciel