How do I select a block of text and do replaces on the xml only within the block.
within the <contrib-group> I need to delete <name> replace <surname> with <SN>; </surname> with </SN>; <given-names> with <FN>; </given-names> with </FN>; <degrees> with <DEG>; </degrees> with </DEG>.
These tags are also in another place in my file but I need to name them something else. I'm really new to this stuff and any help would be much appreciated.
Example of my data
<title-group>
<article-title>Neoadjuvant Accelerated Concomitant Boost Radiotherapy and Multidrug Chemotherapy in Locally Advanced Rectal Cancer</article-title>
<subtitle>A Dose-Escalation Study</subtitle>
</title-group>
<contrib-group>
<contrib contrib-type="author">
<name><surname>Caravatta</surname><given-names>Luciana</given-names>
</name><degrees>MD</degrees>
<xref ref-type="aff" rid="aff1">*</xref>
</contrib>
<contrib contrib-type="author">
<name><surname>Picardi</surname><given-names>Vincenzo</given-names>
</name><degrees>MD</degrees>
<xref ref-type="aff" rid="aff1">*</xref>
</contrib>
</contrib-group>
<aff id="aff1">Departments of <label>*</label>Radiation Oncology</aff>
<aff id="aff2"><label>†</label>Palliative Therapies</aff>
within the <contrib-group> I need to delete <name> replace <surname> with <SN>; </surname> with </SN>; <given-names> with <FN>; </given-names> with </FN>; <degrees> with <DEG>; </degrees> with </DEG>.
These tags are also in another place in my file but I need to name them something else. I'm really new to this stuff and any help would be much appreciated.
Example of my data
<title-group>
<article-title>Neoadjuvant Accelerated Concomitant Boost Radiotherapy and Multidrug Chemotherapy in Locally Advanced Rectal Cancer</article-title>
<subtitle>A Dose-Escalation Study</subtitle>
</title-group>
<contrib-group>
<contrib contrib-type="author">
<name><surname>Caravatta</surname><given-names>Luciana</given-names>
</name><degrees>MD</degrees>
<xref ref-type="aff" rid="aff1">*</xref>
</contrib>
<contrib contrib-type="author">
<name><surname>Picardi</surname><given-names>Vincenzo</given-names>
</name><degrees>MD</degrees>
<xref ref-type="aff" rid="aff1">*</xref>
</contrib>
</contrib-group>
<aff id="aff1">Departments of <label>*</label>Radiation Oncology</aff>
<aff id="aff2"><label>†</label>Palliative Therapies</aff>