XSLT将多个节点组合成单个节点

时间:2010-12-01 06:21:47

标签: xslt

<RowSet>
 <Row>
  <Location_Long_Desc>Sydney Office</Location_Long_Desc>
  <Location_Code>SYDNEY</Location_Code>
  <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
  <Daypart_Code>PEANIG</Daypart_Code>
  <W_20050703_Dlr>30849.3</W_20050703_Dlr>
  <W_20050703_Spots>9</W_20050703_Spots>
  <W_20050710_Dlr>16.35</W_20050710_Dlr>
  <W_20050710_Spots>19</W_20050710_Spots>
 </Row>
</RowSet>

所以,我现在有了这个XML,我需要将W_节点转换为新的单个节点。使用这个XSL

<?xml version="1.0"?>
  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="node()">
    <xsl:copy>
      <xsl:apply-templates select="node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="*">
    <xsl:variable name="tmp" select="local-name()"/>
    <xsl:choose>
      <xsl:when test="starts-with($tmp, 'W_') and ends-with($tmp, '_Dlr')">
    <xsl:if test="text() != ''">
          <xsl:element name="Expenditure">
            <xsl:element name="Period">
              <xsl:value-of select="substring($tmp,3,8)"/>
            </xsl:element>
            <xsl:element name="Value">
              <xsl:apply-templates select="node()"/>
            </xsl:element>
            <xsl:element name="Spots">
              <xsl:apply-templates select="//RowSet/Row/W_20050703_Spots/text()"/>
            </xsl:element>
          </xsl:element>
    </xsl:if>
    </xsl:when>
    <xsl:otherwise>
        <xsl:element name="{$tmp}">
          <xsl:apply-templates select="node()"/>
        </xsl:element>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>
</xsl:stylesheet>

我几乎可以到达那里,但我有几个问题。

  1. 我需要将W _ ?????????????????????????????????????
  2. 我无法弄清楚如何在xpath语句中使用变量,或者我距离应该在哪里。
  3. 同样,我仍然要掌握这一切,所以请保持温和; - )

    TIA

    编辑:02/12/2010 12:00

    确定,

    还有一个问题,取决于数据库级别切换(我忘了所有),Spots节点可能存在也可能不存在。

    所以我仍然需要输出,但它不应该是以下兄弟调用,其中下一个兄弟不是一个有效的_spots节点。

    示例:

    <RowSet>
     <Row>
      <Location_Long_Desc>Sydney Office</Location_Long_Desc>
      <Location_Code>SYDNEY</Location_Code>
      <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
      <Daypart_Code>PEANIG</Daypart_Code>
      <W_20050703_Dlr>30849.3</W_20050703_Dlr>
      <W_20050710_Dlr>16.35</W_20050710_Dlr>
     </Row>
    </RowSet>
    

    您知道,我通过Oracle软件包调用所有这些

    -- get the query context;
    v_qryctx := dbms_xmlgen.newcontext(in_sql_query);
    
    dbms_xmlgen.setnullhandling(v_qryctx, 2);
    dbms_xmlgen.setrowsettag(v_qryctx, 'RowSet');
    dbms_xmlgen.setrowtag(v_qryctx, 'Row');
    
    IF in_export_type = cnst_export_booking
    THEN
        dbms_xmlgen.setxslt(v_qryctx, v_booking_export_xsl);
    
    ELSIF in_export_type = cnst_export_expenditure
    THEN
        dbms_xmlgen.setxslt(v_qryctx, v_expenditure_export_xsl);
    
    END IF;
    

3 个答案:

答案 0 :(得分:5)

此转化

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

 <xsl:template match=
 "*[starts-with(name(),'W_')
  and
   substring-after(substring-after(name(),'_'),'_')='Dlr'
  and
   text()
   ]">
  <Expenditure>
    <Period>
      <xsl:value-of select="substring(name(),3,8)"/>
    </Period>
    <Value>
      <xsl:apply-templates/>
    </Value>
      <xsl:apply-templates mode="extract" select=
      "following-sibling::*[1]
        [starts-with(name(),'W_')
       and
        substring-after(substring-after(name(),'_'),'_')='Spots'
         ]
       "/>
  </Expenditure>
 </xsl:template>

 <xsl:template mode="extract" match=
  "*[starts-with(name(),'W_')
  and
   substring-after(substring-after(name(),'_'),'_')='Spots'
    ]
  ">
   <Spots><xsl:value-of select="."/></Spots>
  </xsl:template>


 <xsl:template match=
  "*[starts-with(name(),'W_')
  and
   substring-after(substring-after(name(),'_'),'_')='Spots'
    ]
  "/>
</xsl:stylesheet>

应用于提供的源XML文档

<RowSet>
 <Row>
  <Location_Long_Desc>Sydney Office</Location_Long_Desc>
  <Location_Code>SYDNEY</Location_Code>
  <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
  <Daypart_Code>PEANIG</Daypart_Code>
  <W_20050703_Dlr>30849.3</W_20050703_Dlr>
  <W_20050703_Spots>9</W_20050703_Spots>
  <W_20050710_Dlr>16.35</W_20050710_Dlr>
  <W_20050710_Spots>19</W_20050710_Spots>
 </Row>
</RowSet>

生成想要的正确结果

<RowSet>
   <Row>
      <Location_Long_Desc>Sydney Office</Location_Long_Desc>
      <Location_Code>SYDNEY</Location_Code>
      <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
      <Daypart_Code>PEANIG</Daypart_Code>
      <Expenditure>
         <Period>20050703</Period>
         <Value>30849.3</Value>
         <Spots>9</Spots>
      </Expenditure>
      <Expenditure>
         <Period>20050710</Period>
         <Value>16.35</Value>
         <Spots>19</Spots>
      </Expenditure>
   </Row>
</RowSet>

应用于第二个提供的XML文档时,由OP在更新中请求

<RowSet>
 <Row>
  <Location_Long_Desc>Sydney Office</Location_Long_Desc>
  <Location_Code>SYDNEY</Location_Code>
  <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
  <Daypart_Code>PEANIG</Daypart_Code>
  <W_20050703_Dlr>30849.3</W_20050703_Dlr>
  <W_20050710_Dlr>16.35</W_20050710_Dlr>
  <W_20050710_Spots>19</W_20050710_Spots>
 </Row>
</RowSet>

再次生成想要的,正确的结果(如果直接兄弟不是<Spot>,则生成无W_nnnnnnnn_Spots元素):

<RowSet>
   <Row>
      <Location_Long_Desc>Sydney Office</Location_Long_Desc>
      <Location_Code>SYDNEY</Location_Code>
      <Daypart_Long_Desc>Peak Night</Daypart_Long_Desc>
      <Daypart_Code>PEANIG</Daypart_Code>
      <Expenditure>
         <Period>20050703</Period>
         <Value>30849.3</Value>
      </Expenditure>
      <Expenditure>
         <Period>20050710</Period>
         <Value>16.35</Value>
         <Spots>19</Spots>
      </Expenditure>
   </Row>
</RowSet>

请注意

  1. 使用身份规则“按原样”复制任何节点。

  2. 仅对W_nnnnnnnn_Dlr元素覆盖身份模板

  3. 使用匹配W_nnnnnnnn_Spots元素的空模板覆盖身份模板

  4. 使用标准XPath功能 name() starts-with() substring-after()

  5. 函数ends-with()仅在XPath 2.0 (XSLT 2.0)中可用,并且未在此XSLT 1.0解决方案中使用。

答案 1 :(得分:1)

我会从像

这样的模板开始
<xsl:template match="Row/*[starts-with(name(), 'W_') and
                           ends-with(name(), '_Dlr')]">

应该更精确地匹配您想要匹配的元素。至于如何选择相邻的<W_${DATE}_Spots>兄弟元素...为什么不使用following-sibling XPath轴和正确的字符串?

<xsl:template match="Row/*[starts-with(local-name(), 'W_') and
                           ends-with(local-name(), '_Dlr')]">
  <xsl:variable name="date" select="substring(local_name(),3,8)"/>
  ...
  <xsl:apply-templates select="following-sibling::*[local-name() ==
                               concat('W_', concat($date, '_Spots'))]"/>
  ...
</xsl:template>

<xsl:template match="Row/*[starts-with(local-name(), 'W_') and
                          ends-with(local-name(), '_Spots')]">
  <xsl:variable name="date" select="substring(local_name(),3,8)"/>
  ...
</xsl:template>
顺便说一下,这看起来像一个等待发生的无限循环:

<xsl:template match="*">
   ...
   <xsl:apply-templates select="node()"/>
   ...
</xsl:template>

我确信我的答案中有一些错误,但无论如何它应该有所帮助。

答案 2 :(得分:1)

这是一个类似于Dimitre的答案。我已经写过了,所以我想我会继续发布它......

XSLT(2.0)

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output indent="yes"/>
  <xsl:strip-space elements="*"/>

  <xsl:template match="node()|@*">
    <xsl:choose>
      <xsl:when test="starts-with(local-name(), 'W_') and ends-with(local-name(), '_Dlr')">
        <xsl:variable name="period" select="substring(local-name(),3,8)"/>
        <Expenditure>
          <Period><xsl:value-of select="$period"/></Period>
          <Value><xsl:apply-templates/></Value>
          <Spots><xsl:value-of select="following-sibling::*[starts-with(local-name(), 'W_') and ends-with(local-name(),concat($period,'_Spots'))]"/></Spots>
        </Expenditure>
      </xsl:when>
      <xsl:when test="ends-with(local-name(), '_Spots')"/>
      <xsl:otherwise>
        <xsl:copy>
          <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
      </xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>

另外,如果您使用的是XSLT 2.0(我假设您使用的是ends-with()),则可以使用tokenize()来捕获名称的部分。

示例:

<xsl:variable name="period" select="tokenize(local-name(),'_')[2]"/>