我在XSLT2.0 中有以下解决方案
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/rows">
<xsl:copy>
<xsl:for-each-group select="row" group-starting-with="row[item='****************']">
<xsl:variable name="title-item" select="preceding-sibling::row[1]/item" />
<xsl:for-each select="current-group()[starts-with(item[1], '#')]">
<row>
<xsl:copy-of select="$title-item, *"/>
</row>
</xsl:for-each>
</xsl:for-each-group>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
因为XSLT 1.0 中不支持for-each-group
我想把它转换成XSLT1.0版本。
声明例如
<xsl:key name="group" match="row[not(item = '****************')]" use="generate-id(preceding-sibling::row[item='****************'][1])"/>
作为顶级元素,则尝试而不是<xsl:for-each-group select="row" group-starting-with="row[item='****************']">
<xsl:for-each select="row[item='****************']">
<xsl:variable name="group" select="key('group', generate-id())"/>
<xsl:variable name="title-item" select="preceding-sibling::row[1]/item" />
<xsl:for-each select="$group[starts-with(item[1], '#')]">
<row>
<xsl:copy-of select="$title-item | *"/>
</row>
</xsl:for-each>
</xsl:for-each>
但我们确实需要看到一些输入样本结构和想要的结果。尽管我试图编写XSLT1,但我可能忽略了一些仅使用XSLT/XXP2的东西。