Your description is not too descriptive, so in general:
inXPath expressions you can use multiple conditions:
node[subnode1=$variable and number(@attribute2) < 2 and not(position() = 77)]
OK, if you want to use <xsl:when> syntax should be (something like):
<xsl:when test="subnode1=$variable and number(@attribute2) < 2 and not(position() = 77)">
There is only 1 'test'-attribute to the node 'when'.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.