2

次のスプレッドシート 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() &gt; 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>
4

2 に答える 2

2

もっと良い XSLT 2.0 のアプローチがあるかもしれませんが、XSLT 1.0 でそれを行う方法は次のとおりです。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
  <xsl:key name="kChildren" match="Row" use="Cell[2]/Data"/>
  <xsl:key name="kParent" match="Row" use="Cell[1]/Data "/>

  <xsl:template match="/">
    <xsl:apply-templates 
             select="*/*/*/*[position() != 1]
                            [not(key('kChildren', Cell[1]/Data))]
                            [generate-id() = 
                             generate-id(key('kParent', Cell[1]/Data)[1])]">
      <xsl:with-param name="idCell" select="1" />
    </xsl:apply-templates>
  </xsl:template>

  <xsl:template match="Row">
    <xsl:param name="idCell" select="2" />
    <Something id="{Cell[$idCell]/Data}">
      <xsl:apply-templates
        select="key('kParent', Cell[$idCell]/Data)
                      [generate-id() = 
                       generate-id(key('kChildren', Cell[2]/Data)[1])]" />
    </Something>
  </xsl:template>
</xsl:stylesheet>

サンプル入力で実行すると、結果は次のようになります。

<Something id="A">
  <Something id="B">
    <Something id="D" />
    <Something id="E" />
  </Something>
  <Something id="C">
    <Something id="F" />
    <Something id="G" />
  </Something>
</Something>
于 2013-04-23T12:15:39.147 に答える