我下面有一个xml。我尝试了一些xsl代码转换为所需的输出。但我无法成功。分组和选择特定节点太难了 标签'A'的值是常数。它们只能是'Math'和'Phys'(除了类名)。我必须用类名对这些值进行分组。
输入:
<sheet>
<Row>
<A>Class:X</A>
</Row>
<Row>
<A>Math</A>
<E>10</E>
</Row>
<Row>
<A>Phys</A>
<E>14</E>
</Row>
<Row>
<A>Class:Y</A>
</Row>
<Row>
<A>Math</A>
<E>8</E>
</Row>
<Row>
<A>Phys</A>
<E>12</E>
</Row>
</sheet>
期望的输出:
<sheet>
<ROW>
<class_type>X</class_type>
<math>10>/math>
<phys>14>/phys>
</ROW>
<ROW>
<class_type>X</class_type>
<math>8>/math>
<phys>12>/phys>
</ROW>
</sheet>
我的尝试:
<xsl:template match="/">
<xsl:apply-templates select="/s0:root"/>
</xsl:template>
<xsl:template match="/s0:root">
<ns0:Sheet>
<xsl:for-each select="s0:Row">
<xsl:if test="contains(s0:A/text(),'Class:')">
<ns0:class_type>
<xsl:value-of select="substring-after(s0:A/text(),'Class:')"/>
</ns0:class_type>
</xsl:if>
<xsl:if test="contains(s0:A/text(),'Math')">
<ns0:math>
<xsl:value-of select="s0:E/text()"/>
</ns0:math>
</xsl:if>
<xsl:if test="contains(s0:A/text(),'Phys')">
<ns0:phys>
<xsl:value-of select="s0:E/text()"/>
</ns0:phys>
</xsl:if>
</xsl:for-each>
</ns0:Sheet>
</xsl:template>
答案 0 :(得分:0)
以下是您可以看到的一种方式:
XSLT 1.0
<xsl:stylesheet version="1.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="/sheet">
<xsl:copy>
<xsl:for-each select="Row[contains(A, 'Class:')]">
<ROW>
<class_type>
<xsl:value-of select="substring-after(A, 'Class:')"/>
</class_type>
<math>
<xsl:value-of select="following-sibling::Row[A='Math'][1]/E"/>
</math>
<phys>
<xsl:value-of select="following-sibling::Row[A='Phys'][1]/E"/>
</phys>
</ROW>
</xsl:for-each>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
这假设每个&#34; Class&#34; row有一个&#34; Math&#34;和物理学&#34;在下一个&#34; Class&#34;之前跟随它的行排在一起。