"multiconditional" for-each ??
Hi,
I need a nested for-each but the "inner-one" refers to a node whose name can come in 2 in xsd defined names (example "name" and "eman").
Is it possible to do a for-each for 2 differently named nodes??
At there is a 500lines and i would not like copypaste it if its not necessary.
xml:
<root>
<element>
<name></name>
<name></name>
<name></name>
</element>
<element>
<eman></eman>
<eman></eman>
<eman></eman>
</element>
</root>
xslt:
<xsl:for-each select="//root/element">
<xsl:for-each select="name or eman">
</xsl:for-each>
</xsl:for-each>
THANKS :)
|