我的源xml看起来像:
<TABLE>
<ROW>
<CELL ROWSPAN="3"> Test </CELL>
<CELL ROWSPAN="2"> Test </CELL>
<CELL ROWSPAN="1"> Test </CELL>
<CELL ROWSPAN="3"> Test </CELL>
<CELL ROWSPAN="1"> Test </CELL>
</ROW>
<ROW>
<CELL ROWSPAN="1"> Test </CELL>
<CELL ROWSPAN="1"> Test </CELL>
</ROW>
</TABLE>
正确的转换输出应如下所示:
<tbody>
<row>
<entry colname="1"> Test </entry>
<entry colname="2"> Test </entry>
<entry colname="3"> Test </entry>
<entry colname="4"> Test </entry>
<entry colname="5"> Test </entry>
</row>
<row>
<entry colname="3"> Test </entry>
<entry colname="5"> Test </entry>
</row>
</tbody>
如您所见,棘手的部分是第二行元素。由于第一行有几个单元占用多行,因此它会影响第二行的组合名,这就是为什么第二行的第一个条目以colname“3”而不是“1”开头。我不知道如何在这里画一张桌子,但如果你在纸上描绘它,你就会很容易理解。
目前,我有以下xsl可以部分捕获这个(我省略了其他信息,因为我只遇到@colname问题)
<xsl:template match="CELL">
<xsl:if test="../preceding-sibling::ROW[1]/CELL[1]/@ROWSPAN > 1">
<xsl:attribute name="colname" select="position()+count(../preceding-sibling::ROW[1]/CELL[@ROWSPAN>1])"/>
..
</xsl:if>
</xsl:template>
这样做不会很好,因为它将包含所有具有多行行数的CELL,因此结果将如下所示:
<row>
<entry colname="4"> Test </entry>
<entry colname="5"> Test </entry>
</row>
虽然第一个条目应该从3开始。
我发现这个问题有点难以描述,但如果需要进一步的信息,我会尽力而为,请在下面发表评论。
答案 0 :(得分:2)
这个解决方案非常复杂,我有一种唠叨的感觉,可能有更好的方法,但似乎有效:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="TABLE">
<tbody>
<xsl:apply-templates select="ROW[1]" />
</tbody>
</xsl:template>
<xsl:template match="ROW">
<xsl:param name="occupiedcols" />
<row>
<xsl:apply-templates select="CELL[1]">
<xsl:with-param name="occupiedcols" select="$occupiedcols" />
</xsl:apply-templates>
</row>
<xsl:apply-templates select="following-sibling::ROW[1]">
<xsl:with-param name="occupiedcols">
<xsl:apply-templates select="CELL[1]" mode="getoccupied">
<xsl:with-param name="occupiedcols" select="$occupiedcols" />
</xsl:apply-templates>
<xsl:text></xsl:text>
</xsl:with-param>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="CELL">
<xsl:param name="occupiedcols" />
<xsl:param name="col" select="1" />
<xsl:variable name="thiscol" select="$col + string-length(substring-before(substring($occupiedcols,$col,255),'0'))" />
<xsl:element name="entry">
<xsl:attribute name="colname">
<xsl:value-of select="$thiscol" />
</xsl:attribute>
</xsl:element>
<xsl:apply-templates select="following-sibling::CELL[1]">
<xsl:with-param name="occupiedcols" select="$occupiedcols"/>
<xsl:with-param name="col" select="$thiscol + 1" />
</xsl:apply-templates>
</xsl:template>
<xsl:template match="CELL" mode="getoccupied">
<xsl:param name="occupiedcols" />
<xsl:param name="col" select="1" />
<xsl:variable name="thiscol" select="$col + string-length(substring-before(substring($occupiedcols,$col,255),'0'))" />
<xsl:choose>
<xsl:when test="contains(substring($occupiedcols,$col,255),'0')">
<xsl:value-of select="translate(substring-before(substring($occupiedcols,$col,255),'0'),'0123456789','-012345678')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="translate(substring($occupiedcols,$col,255),'123456789','012345678')" />
</xsl:otherwise>
</xsl:choose>
<xsl:value-of select="@ROWSPAN - 1" />
<xsl:if test="not(following-sibling::CELL)">
<xsl:value-of select="translate(substring($occupiedcols,$thiscol + 1, 255),'0123456789','0012345678')" />
</xsl:if>
<xsl:apply-templates select="following-sibling::CELL[1]" mode="getoccupied">
<xsl:with-param name="occupiedcols" select="$occupiedcols"/>
<xsl:with-param name="col" select="$thiscol + 1" />
</xsl:apply-templates>
</xsl:template>
</xsl:stylesheet>
它有一个已知的问题:如果一个单元格跨越超过9行,它将会中断。如果这是一个问题,它实际上很容易适应。
此外,它不支持使用COLSPAN
。
它的工作原理是传递一串数字,详细说明每列仍有一个单元格的行数,因此第二行将在您的示例中传递“21020”,并根据colname
属性计算在0的位置。第二次遍历每行将数字减少一个,但为每个单元格的ROWSPAN
代替0。
此解决方案还假设所有单元格都具有ROWSPAN
属性,即使它们只跨越一个。如果不是这样,我可以添加一种支持默认值1
的方法。
答案 1 :(得分:1)
我认为一个好主意是维护一个位向量,每个列包含此列中前一个单元格将扩展到的行数。要做到这一点,你必须使用递归,因为你必须修改每一行和XSLT的位向量,因为函数式编程语言无法修改“变量”。
以下样式表显示了包含3列的表格的想法。
<xsl:template match="TABLE2">
<tbody>
<xsl:call-template name="processRows">
<xsl:with-param name="rows" select="ROW"/>
</xsl:call-template>
</tbody>
</xsl:template>
<xsl:template name="processRows">
<xsl:param name="rows"/>
<xsl:param name="index" select="1"/>
<!-- Bit vector for the columns -->
<xsl:param name="col1" select="0"/>
<xsl:param name="col2" select="0"/>
<xsl:param name="col3" select="0"/>
<xsl:variable name="cellsBefore2">
<xsl:choose>
<xsl:when test="$col1 > 0">0</xsl:when>
<xsl:otherwise>1</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="cellsBefore3">
<xsl:choose>
<xsl:when test="$col2 > 0">
<xsl:value-of select="$cellsBefore2"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$cellsBefore2 + 1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<row>
<xsl:if test="$col1 = 0">
<entry colname="1">
<xsl:value-of select="$rows[$index]/CELL[1]/text()"/>
</entry>
</xsl:if>
<xsl:if test="$col2 = 0">
<entry colname="2">
<xsl:value-of select="$rows[$index]/CELL[$cellsBefore2 + 1]/text()"/>
</entry>
</xsl:if>
<xsl:if test="$col3 = 0">
<entry colname="3">
<xsl:value-of select="$rows[$index]/CELL[$cellsBefore3 + 1]/text()"/>
</entry>
</xsl:if>
</row>
<xsl:if test="$index < count($rows)">
<xsl:call-template name="processRows">
<xsl:with-param name="rows" select="$rows"/>
<xsl:with-param name="index" select="$index + 1"/>
<xsl:with-param name="col1">
<xsl:choose>
<xsl:when test="$col1 > 0">
<xsl:value-of select="$col1 - 1"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="number($rows[$index]/CELL[1]/@ROWSPAN) - 1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="col2">
<xsl:choose>
<xsl:when test="$col2 > 0">
<xsl:value-of select="$col2 - 1"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="number($rows[$index]/CELL[$cellsBefore2 + 1]/@ROWSPAN) - 1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="col3">
<xsl:choose>
<xsl:when test="$col3 > 0">
<xsl:value-of select="$col3 - 1"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="number($rows[$index]/CELL[$cellsBefore3 + 1]/@ROWSPAN) - 1"/>
</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
如您所见,问题是列数是硬编码的。如果要拥有任意数量的列,则需要能够生成并传递任意长度的列表作为参数。这只能在XSLT 2.0中实现。但是,如果您使用的是XSLT 1.1,则可以使用EXSLT(如果它在您的环境中可用),将列表作为结果树写入变量并在此变量上使用exslt:node-set()以获取可用列表