/ Published in: XSLT
Makes use of XPath's union operator | .
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<xsl:if test="count($nodeSet1|$nodeSet2) = count($nodeSet1) and count($nodeSet1) = count($nodeSet2)"> <xsl:text>Node set are the same</xsl:text> </xsl:if>