StXPathNextPosition Syntax StXPathNextPosition(); Description Increments the traversing position in the node set that has been pushed onto the memory stack. Returns 1 The incremented position points to a valid node. 0 The incremented position points outside the range of valid nodes. Example StXPathPushNodeSet("/data/message/item[number(value)>100]"); while( stXPathNextPosition() ) { Log(1, stEvalXPath("item_description") ); } StXPathPopNodeSet();
StXPathNextPosition();
1
0
StXPathPushNodeSet("/data/message/item[number(value)>100]");
while( stXPathNextPosition() )
{
Log(1, stEvalXPath("item_description") );
}
StXPathPopNodeSet();