仅删除xslt中指定的父元素而不是子元素

时间:2017-10-17 11:57:51

标签: xml xslt

输入xml,如下所示。

<part type="frontmatter">
<section level="1"><title>THIEME Atlas of Anatomy</title>
........
</section>
<section level="1">
<title></title><para><emph type="bold">To access additional material
......
</section>
</part>
<part type="content">
<section level="1">
<title id="p001">Structure and Development of Organ Systems</title>
...
<section level="2">
<title>Suggested Readings</title>
.......
</section>
</section>
</part>

输出应为

<part type="frontmatter">
<section level="1"><title>THIEME Atlas of Anatomy</title>
........
</section>
<section level="1">
<title></title><para><emph type="bold">To access additional material
......
</section>
</part>
<part type="content">
<title id="p001">Structure and Development of Organ Systems</title>
...
<section level="2">
<title>Suggested Readings</title>
........
</section>
</part>

我的xslt是:

<xsl:template match="section[position()=1]"><!-\-//-\->
    <xsl:if test="preceding-sibling::part[@type='content'][not(title)]">
        <part type="content">
        <xsl:apply-templates select="node() | @*"/>
        </part>
    </xsl:if>
</xsl:template>

我想删除<section level="1">下出现的<part type="content">元素,其中&#34; title&#34;元素不应出现在这两个元素之间。如果&#34;标题&#34;在部分元素下出现,则不应进行任何更改。

1 个答案:

答案 0 :(得分:1)

如果要删除section元素,在part元素下,前面没有title,则模板匹配应如下所示

<xsl:template match="part[@type='content']/section[@level='1'][not(preceding-sibling::title)]">

试试这个XSLT

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" />

    <xsl:template match="part[@type='content']/section[@level='1'][not(preceding-sibling::title)]">
        <xsl:apply-templates />
    </xsl:template>

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

请注意,在此特定示例中,您可以将其简化为此

<xsl:template match="part[@type='content']/section[1]">

因此,如果它是section的第一个子元素,请删除part元素。如果您可以在title之前添加section以外的其他元素,则无效。