我有一个带有一系列标签和文本的 XML,
<table-wrap id="t01"> <label>Tabela 1</label>aaaa <caption>...</caption>
...
</table-wrap>
并且需要删除文本“aaaa”,即label标签的follow-sibling。我有这个任务的 XSLT 身份转换,比如
<xsl:template match="@*|node()"><!-- identity -->
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template>
<xsl:template match="table-wrap/label::following-sibling/text()" />
问题是如何表达以下兄弟文本的XPath?
PS:示例的xpath是错误的,只是说明性的。我尝试table-wrap/label/following-sibling::text()
和其他人一样,并且错误。