hI,
I have a situation like this. Given a context node, I want to write a XPATH expression that will return exactly the next three nodes that have the same parent as the context node.



for eg, if the context node is " /* ", I wrote this /*/following-sibling::*[POSITION()<4]


but i am not sure whether this is right, because it gives different ouputs. If anyone...