Ignoring the first element of xml node collection when looping with xslt
i am looping through an xml doucment with xslt for each i need to ignore the first element and co开发者_开发百科nsider the rest when looping.
could somebody help me on this. i am new to xslt.
thanking you. Ramana kumar.
<xsl:for-each select="...your xpath...">
<xsl:if test="position()!=1"> <!-- ignore first node -->
..code here...
</xsl:if>
</xsl:for-each>
精彩评论