我正在使用XSLT 1.0将html转换为xml。这是我的输入
<table>
<tr id=1>
<td rowspan=2>
<td>
</tr>
<tr id=2>
<td>
</tr>
</table>
这是html中的普通rowpan代码。 如果我在td(id = 1)中有属性rowspan,我必须在tr(id = 2)中已经存在的td前面创建一个新元素td。连续tr中新元素td的数量取决于rowspan值。
如何在xsl模板(或)xslt转换后的任何后期处理中执行此操作..请帮助我...提前感谢..
我会说得更清楚......
表格为3 * 3。考虑每行中的第一列是合并的。所以我的输入html看起来像这样
<table>
<tr id="1">
<td rowspan="3">
</p>
</td>
<td>
</p>
</td>
<td>
</p>
</td>
</tr>
<tr id="2">
<td>
</p>
</td>
<td>
</p>
</td>
</tr>
<tr id="3">
<td>
</p>
</td>
<td>
</p>
</td>
</tr>
</table>
id = 2&amp;的tr 3具有两个td,意味着第一列与第一个tr - > td合并,其具有rowpan值为3(即包括当前行单元的3行被合并)。我的结果应该是
<w:tbl> <!-- represents table -->
<w:tr> <!-- represents table tr-->
<w:tc> <!-- represents table td-->
<w:tcPr> <!-- represents td style-->
<w:vMerge w:val="restart"/> <!-- added due to having rowspan attribute-->
</w:tcPr>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
</w:tr>
<w:tr>
<w:tc> <!-- have to add this node in addition-->
<w:tcPr>
<w:vMerge/>
</w:tcPr>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
<w:tr>
<w:tr>
<w:tc> <!-- have to add this node in addition-->
<w:tcPr>
<w:vMerge/>
</w:tcPr>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
<w:tc>
<w:p/>
</w:tc>
<w:tr>
</w:tbl>
答案 0 :(得分:0)
更新:我的最新方法是根据第一行中的单元格数量及其rowspan
值计算所需的单元格总数。所以,这个输入:
<table>
<tr id="1">
<td rowspan="3"/>
<td rowspan="2"/>
<td/>
</tr>
<tr id="2">
<td/>
</tr>
<tr id="3">
<td rowspan="2"/>
<td/>
</tr>
</table>
应该导致此输出:
<table>
<tr id="1">
<td rowspan="3"/>
<td rowspan="2"/>
<td/>
</tr>
<tr id="2">
<td/><td/><td/><td/><td/><td/>
</tr>
<tr id="3">
<td/><td/><td/><td rowspan="2"/>
<td/>
</tr>
</table>
也就是说,每行应占6个单元格(基于第一行中显示的内容)。这比我的第一次尝试更灵活。
注意:目前还不清楚OP的所需输出是什么,但只需输出一个具有适当rowspan
值的新单元格,而不是多个新细胞。
这是样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="rowspan">
<xsl:call-template name="sum">
<xsl:with-param name="nodes" select="/table/tr[1]/td" />
</xsl:call-template>
</xsl:variable>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="tr[position() > 1]/td[1]">
<xsl:variable name="currcount">
<xsl:call-template name="sum">
<xsl:with-param name="nodes" select="../td" />
</xsl:call-template>
</xsl:variable>
<xsl:variable name="needed" select="$rowspan - $currcount" />
<xsl:if test="$needed > 0">
<xsl:call-template name="loop">
<xsl:with-param name="i">0</xsl:with-param>
<xsl:with-param name="count">
<xsl:value-of select="$needed" />
</xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
<xsl:template name="loop">
<xsl:param name="i" />
<xsl:param name="count" />
<td />
<xsl:if test="$i < $count - 1">
<xsl:call-template name="loop">
<xsl:with-param name="i">
<xsl:value-of select="$i + 1" />
</xsl:with-param>
<xsl:with-param name="count">
<xsl:value-of select="$count" />
</xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- modified version of @Tomalak's code in question 1333558 -->
<xsl:template name="sum">
<xsl:param name="nodes" />
<xsl:param name="sum" select="0" />
<xsl:variable name="curr" select="$nodes[1]" />
<!-- if we have a node, calculate & recurse -->
<xsl:if test="$curr">
<xsl:variable name="runningsum">
<xsl:choose>
<xsl:when test="$curr[@rowspan]">
<xsl:value-of select="$sum + $curr/@rowspan" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$sum + 1" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:call-template name="sum">
<xsl:with-param name="nodes"
select="$nodes[position() > 1]" />
<xsl:with-param name="sum" select="$runningsum" />
</xsl:call-template>
</xsl:if>
<!-- if we don't have a node (last recursive step), return sum -->
<xsl:if test="not($curr)">
<xsl:value-of select="$sum" />
</xsl:if>
</xsl:template>
</xsl:stylesheet>
我希望有人能够提供更短,更优雅的解决方案。