XSLT减法运算符

时间:2016-01-12 12:46:09

标签: xpath xslt-1.0

就像|运算符,我们可以在节点集上使用 - 运算符吗?

我有两组节点 - Set1和Set2。我想得到另一个集合,其中Set1中的所有元素都不在Set2中。

然后我想迭代这个集合:

<xsl:for-each select="$Set1 - $Set2">
    <!--Process Child Nodes-->
</xsl:for-each>

1 个答案:

答案 0 :(得分:1)

使用XPath 1.0,您可以使用$set1[count(.|$set2) != count($set2)]