Hallo hackmac,
Wie sieht dazu das passende XSTL-Template aus? Kann mir da jemand bitte bitte bitte helfen??? :-)
Ansatz mit einem entsprechend formulierten XPath-Zugriff und einer geordeneten HTML-Liste als Ausgabe:
<xsl:template match="datenstrom">
<ol>
<xsl:apply-templates select="*[local-name()[starts-with(.,'feld1_')]]"/>
</ol>
</xsl:template>
<xsl:template match="*[local-name()[starts-with(.,'feld1_')]]">
<li>
<xsl:value-of select="."/>
</li>
</xsl:template>
Ergebnis:
<ol>
<li>Conten1</li>
<li>Conten2</li>
</ol>
Grüße,
Thomas