对于文档中的每个表,我想将其定义为“简单”或“复杂”。如果每行最多包含两列,则应为“简单”,否则应为“复杂”。
我怎么能用xslt做到这一点?
很抱歉你花时间。我想出了一个解决方案。如果有人需要,这是答案。
<xsl:template match="TABLE">
<xsl:variable name="tableClass">
<xsl:choose>
<xsl:when test="count(TBODY/TR[count(child::*) = 2]) = count(TBODY/TR)">
simple
</xsl:when>
<xsl:otherwise>
complicated
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<table class="{$tableClass}">
<xsl:apply-templates select="CAPTION"/>
<xsl:apply-templates select="TBODY"/>
and so on.......
</table>
给定两个 XML 文档,A:
<base>
<row>
<col1 value='x'/>
<col2/>
</row>
<row>
<col1 value='y'/>
<col2/>
</row>
<row>
<col1 value='z'/>
<col2/>
</row>
</base>
和乙:
<base>
<row>
<col1/>
<col2/>
<col3/>
</row>
<row>
<col1/>
<col2/>
</row>
</base>
这个 xsl 将根据每个顶级行元素下的子元素数量来判断它是“简单”还是“复杂”:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding = "iso-8859-1"/>
<!-- is the xml simple? -->
<!-- simple, in this case, means each row has 2 or fewer columns -->
<xsl:variable name="maxColCount">
<xsl:for-each select="//base/row">
<xsl:sort data-type="number" order="descending"/>
<xsl:if test="position()=1"><xsl:value-of select="count(./*)"/></xsl:if>
</xsl:for-each>
</xsl:variable>
<xsl:template match="/">
<xsl:choose>
<xsl:when test="$maxColCount > 2">complex</xsl:when>
<xsl:otherwise>simple</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
结果是:A简单,B复杂。