Sorry for the trivial request, but it's a difficult time for me. I have this part of XML code:
<?xml version="1.0" encoding="UTF-8"?>
<ClinicalDocument xsi:schemaLocation="urn:hl7-org:v3 CDA.xsd" xmlns="urn:hl7-org:v3" xmlns:mif="urn:hl7-org:v3/mif" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<structuredBody moodCode="EVN" classCode="DOCBODY">
<component>
<section ID="DESCRIPTION">
<code code="57832-8" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" codeSystemVersion="2.19" />
<title>DESCRIPTION</title>
<text>
<list ID="RQO">
<caption>REQUEST:</caption>
<item>
<content ID="Prest_1">90153 - CORTISOLO [S]</content>
</item>
<item>
<content ID="Prest_2">90171 - DEIDROEPIANDROSTERONE (DEA)</content>
</item>
<item>
<content ID="Prest_3">90172 - DEIDROEPIANDROSTERONE SOLFATO (DEA-S)</content>
</item>
<item>
<content ID="Prest_4">90413 - TESTOSTERONE [P]</content>
</item>
<item>
<content ID="Prest_5">90414 - TESTOSTERONE LIBERO</content>
</item>
</list>
<list ID="DIAG">
<caption>Problem:</caption>
<item>
<content ID="Prob_1">Control</content>
</item>
</list>
</text>
</section>
</component>
</structuredBody>
I would need to get the values contained in the text tag, and in particular: 1) Prest_1 2) 90153 - CORTISOLO [S] and all the following lines. Thanks for your help.