Lets say the xml file looks like:
Qt Code:
  1. <article>
  2. <title>Help</title>
  3. <abstract>
  4. <p>First pgraph.</p>
  5. <p>Second pgraph</p>
  6. </abstract>
  7. </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:

Qt Code:
  1. <p>First pgraph.</p>
  2. <p>Second pgraph</p>
To copy to clipboard, switch view to plain text mode 

Anybody know how to do this?