XSLT复制父节点中的子节点

时间:2018-06-12 10:26:22

标签: xml xslt

我需要将子元素复制到父元素中。

输入

<csv>
<row>
    <stuff>a</stuff>
    <more>1</more>
    <evenmore>123</evenmore>
    <row>
        <other>1345</other>
        <stuff>dga</stuff>
    </row>
</row>
<row>
    <stuff>b</stuff>
    <more>2</more>
    <evenmore>456</evenmore>
    <row>
        <other>4576</other>
        <stuff>jzj</stuff>
    </row>
</row>
</csv>

期望的输出

<csv>
<row>
    <stuff>a</stuff>
    <more>1</more>
    <evenmore>123</evenmore>
    <other>1345</other>
    <stuff>dga</stuff>
</row>
<row>
    <stuff>b</stuff>
    <more>2</more>
    <evenmore>456</evenmore>
    <other>4576</other>
    <stuff>jzj</stuff>
</row>
</csv>

我尝试了什么(输出与输入保持一致):

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:strip-space elements="*"/>
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>

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

<xsl:template match="row">
    <xsl:copy>
        <xsl:apply-templates/>
        <xsl:apply-templates select="child::row/row/other | child::row/row/stuff"/>
    </xsl:copy>
</xsl:template>
</xsl:stylesheet>

我肯定会错过这里非常简单的事情。 child元素与父元素的名称相同应该不是问题吗?

1 个答案:

答案 0 :(得分:2)

您确实需要第二个模板仅匹配子if (condition1 && (condition1 || condition2)) ,而不是父模板。然后你可以选择它的孩子,但不要自己复制

试试这个XSLT

row