使用 XSLT 2 或 3 中的位置分组,您可以使用
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="3.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="#all"
expand-text="yes">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="A">
<xsl:copy>
<xsl:for-each-group select="B" group-adjacent="(position() - 1) idiv 2">
<XYZ name="{@v}">
<MPN>{current-group()[2]/@v}</MPN>
</XYZ>
</xsl:for-each-group>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
使用 XSLT 1,您可以处理B[position() mod 2 = 1]
创建XYZ
元素,然后导航following-sibling::B[1]
到创建MPN
元素:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="A">
<xsl:copy>
<xsl:for-each select="B[position() mod 2 = 1]">
<XYZ name="{@v}">
<MPN>
<xsl:value-of select="following-sibling::B[1]/@v"/>
</MPN>
</XYZ>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>