Well, say we got a chunk of code, which is more than enough, I think:
Code:
<citation>
<CI_Citation>
<title xsi:type="PT_FreeText_PropertyType">
<gco:CharacterString>Dataset of the TDEM measurement campaign in Uveghuta, 2002
</gco:CharacterString>
<PT_FreeText>
textGroup # 13
</PT_FreeText>
</title>
</CI_Citation>
</citation>
Currently, I am doing a transformation, using XSLT, of course. The main goal is to transform the XML document, to another XML document, removing some unnecessary tags or whatsoever. So, long story short, this is what I want to do (quite self-explanatory code):
Code:
<citation>
<CI_Citation>
<title xsi:type="PT_FreeText_PropertyType">
Dataset of the TDEM measurement campaign in Uveghuta, 2002
<PT_FreeText>
textGroup # 13
</PT_FreeText>
</title>
</CI_Citation>
</citation>
Well, at least I have moved one step further by being able to transform the exact copy of the document.
Sorry if those questions look too basic. It's just that I need to do this quick transformation. And with the knowledge of XSLT for a couple of days along with reading half of the book, sometimes I found myself stuck at it.
Any input is appreciated.