E
earthquake.de
Hi,
I have the following problem:
I want create a xslt template that appends strings from
a arbitrary occurrence of Sub-tags.
I will explain it with an example:
Input:
<root>
<Parent>
<SUB1>
<VALUE>someString1</VALUE>
<OTHERVALUES>...</OTHERVALUES>
</SUB1>
<SUB1>
<VALUE>someString2</VALUE>
<OTHERVALUES>...</OTHERVALUES>
</SUB1>
<!-- ... -->
</Parent>
</root>
<!-- SUB1 can be occure more than 2 times...
VALUE occures one time in a SUB1-->
What i need from root:
Output:
<VALUES>someString1;someString2;</VALUES>
this is not possible with concat?
Thanks for your help
alex
I have the following problem:
I want create a xslt template that appends strings from
a arbitrary occurrence of Sub-tags.
I will explain it with an example:
Input:
<root>
<Parent>
<SUB1>
<VALUE>someString1</VALUE>
<OTHERVALUES>...</OTHERVALUES>
</SUB1>
<SUB1>
<VALUE>someString2</VALUE>
<OTHERVALUES>...</OTHERVALUES>
</SUB1>
<!-- ... -->
</Parent>
</root>
<!-- SUB1 can be occure more than 2 times...
VALUE occures one time in a SUB1-->
What i need from root:
Output:
<VALUES>someString1;someString2;</VALUES>
this is not possible with concat?
Thanks for your help
alex