exslt function
set:trailing()
set:trailing() returns the nodes in one node-set that come after the first node in the other node-set.
Syntax
set:trailing(nodeSet1, nodeSet2)
Parameters
nodeSet1- : The node set to find nodes in that follow the first node in the second node set.
nodeSet2- : The node set to compare against.
Return value
A node-set containing the nodes from nodeSet1 whose values follow the first node in nodeSet2.
[!NOTE] If the first node in
nodeSet2isn’t contained innodeSet1, an empty set is returned. IfnodeSet2is empty, then the result isnodeSet1.