[Home] [By Thread] [By Date] [Recent Entries]
Pankaj Chaturvedi schrieb:
Input: Hello Pankaj, please try the following stylesheet. Michael <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="journalcode | issn"><!-- for these two -->
<xsl:copy><!-- copy element -->
<xsl:copy-of select="@*"/><!-- copy attributes -->
<xsl:attribute name="dummy"><!-- put string value into @dummy -->
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:copy>
</xsl:template> <xsl:template match="@*|node()"><!-- leave rest unchanged -->
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template></xsl:transform>
|

Cart



