次のスプレッドシート XML があります。
<Workbook>
<Worksheet ss:Name="Sheet1">
<Table>
<Row>
<Cell><Data ss:Type="String">Parent</Data></Cell>
<Cell><Data ss:Type="String">Child</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">A</Data></Cell>
<Cell><Data ss:Type="String">B</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">A</Data></Cell>
<Cell><Data ss:Type="String">C</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">B</Data></Cell>
<Cell><Data ss:Type="String">D</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">B</Data></Cell>
<Cell><Data ss:Type="String">E</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">C</Data></Cell>
<Cell><Data ss:Type="String">F</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">C</Data></Cell>
<Cell><Data ss:Type="String">G</Data></Cell>
</Row>
</Table>
</Worksheet>
</Workbook>
Saxon XSLT 2.0 を使用して次の形式に変換しようとしています。
<Something id="A">
<Something id="B">
<Something id="D"/>
<Something id="E"/>
</Something>
<Something id="C">
<Something id="F"/>
<Something id="G"/>
</Something>
</Something>
誰でもこれを手伝うことができますか?その答えは、再帰的なapply-templatesにあると思います (ただし、for-each でも同じことができると期待しています)。
どうもありがとう。
更新: Navin に応えて、私は次のような XSLT を試していますが、間違ったツリー (おそらく私のグループで開始する?) に吠えているのではないかと心配しています:
<xsl:stylesheet
version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40"
xpath-default-namespace="urn:schemas-microsoft-com:office:spreadsheet"
exclude-result-prefixes="o x ss html"
>
<xsl:output method="xml" indent="yes" />
<xsl:template match="Workbook/Worksheet[@ss:Name='Sheet1']/Table">
<xsl:variable name="row_header" select="count(Row/Cell[.='Parent']/preceding-sibling::Row)+1"/>
<xsl:apply-templates select="Row[position() > $row_header]">
<xsl:with-param name="row_header" select="$row_header"/>
</xsl:apply-templates>
</xsl:template>
<xsl:template match="Row">
<xsl:param name="row_header"/>
<xsl:variable name="ChildId" select="Cell[count(ancestor::*/Row[$row_header]/Cell[.='Child']/preceding-sibling::Cell)+1]"/>
<xsl:variable name="ParentId" select="Cell[count(ancestor::*/Row[$row_header]/Cell[.='Parent']/preceding-sibling::Cell)+1]"/>
<xsl:for-each-group select="*" group-starting-with="Row">
<Something id="{$ChildId}">
<xsl:apply-templates select="current-group()[position() > 1]" mode="Child">
<xsl:with-param name="ChildId" select="$ChildId"/>
</xsl:apply-templates>
</Something>
</xsl:for-each-group>
</xsl:template>
<xsl:template match="*" mode="Child">
<xsl:param name="ChildId"/>
<Something id="{$ChildId}"/>
</xsl:template>
</xsl:stylesheet>