嗨,我有一个看起来像这样的 xml 文档:
<a> <!-- Several nodes "a" with the same structure for children -->
<b>12</b>
<c>12</c>
<d>12</d>
<e>12</e>
<f>12</f>
<g>12</g>
</a>
我正在尝试使用 xslt 2.0 获取以下文档
<a>
<b>12</b>
<c>12</c>
<wrap>
<d>12</d>
<e>12</e>
<f>12</f>
<g>12</g>
</wrap>
</a>
我开始了我的xsl文件
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
并针对几种情况进行了更改,例如替换字符串部分,过滤某些节点等。但是我被“选择四个连续节点”所困扰,关于如何实现包装的任何线索?