这是我的xml,
<w:tc>
<w:p>
<w:pPr></w:pPr>
<w:r></w:r>
</w:p>
</w:tc>
<w:tc>
<w:p>
<w:pPr></w:pPr>
</w:p>
</w:tc>
我想匹配前面有 w:tc 并且没有后续兄弟 w:r 的 w:p,确切地说,我想要第二个 w:tc。编写我尝试过的代码,
<xsl:template match="w:pPr[ancestor::w:p[ancestor::w:tc] and not(following-sibling::w:r)]">
我需要 w:pPr 的 xpath 没有后续兄弟