I want to match all nodes in my xml except one ie docbody. Something like \[code\]<xsl:template match="@*|node()[not(docBody)]" name="identity"><xsl:copy> <xsl:apply-templates select="@*|node()"></xsl:copy></xsl:template>\[/code\]How do i achieve this, i tried the way above.