gpt4 book ai didi

XSLT 将多个节点合并为单个节点

转载 作者:行者123 更新时间:2023-12-02 10:03:57 26 4
gpt4 key购买 nike

<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_?????????Dlr 和 W?????????_Spots 合并到单个节点中,但是
  2. 我不知道如何在 xpath 语句中使用变量,或者可能离我应该做的事情还有很远。

再说一遍,我仍在努力应对这一切,所以请保持温柔;-)

TIA

编辑:2010年2月12日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;

最佳答案

这种转变:

<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 解决方案中未使用。

关于XSLT 将多个节点合并为单个节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4321764/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com