Lets say the xml file looks like:
<article>
<title>Help</title>
<abstract>
<p>First pgraph.</p>
<p>Second pgraph</p>
</abstract>
</article>
<article>
<title>Help</title>
<abstract>
<p>First pgraph.</p>
<p>Second pgraph</p>
</abstract>
</article>
To copy to clipboard, switch view to plain text mode
and I want to extract everything (data as well as tags) between the abstract tags so I could put that in a string. The thing I extract would then be:
<p>First pgraph.</p>
<p>Second pgraph</p>
<p>First pgraph.</p>
<p>Second pgraph</p>
To copy to clipboard, switch view to plain text mode
Anybody know how to do this?
Bookmarks