I would like to run the following input file:
<structure>
<object>
<property name="DOC">ABC</property>
<property name="VERS">001</property>
<property name="REV">-</property>
<property name="NAME">Peter</property>
</object>
</structure>
<structure>
<object>
<property name="DOC">ABC</property>
<property name="VERS">001</property>
<property name="REV">1</property>
<property name="NAME">Carl</property>
</object>
</structure>
to get the following output with saxon processor:
DOC,VERS,REV,NAME
ABC,001,-,Peter
ABC,001,1,Carl
Any ideas how to format the XSL file.
Thanks in advance!