2011-12-08 80 views

回答

1

使用以下形式的表達式:

/<path_to_element>/following-sibling::*[(position() - 1) < $n] 

例如,爲了得到3個兄妹以下<c/>在以下文件中:

<test> 
    <a/> 
    <b/> 
    <c/> 
    <d/> 
    <e/> 
    <f/> 
    <g/> 
</test> 

使用下面的表達式:

/*/c/following-sibling::*[(position() - 1) < 3]