输入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;在部分元素下出现,则不应进行任何更改。
答案 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
以外的其他元素,则无效。