我有像这样的xml,
<section>
<p id="ss_main">aa</p>
<p id="ss_chap">bb</p>
<p id="main">cc</p>
<p id="main">dd</p>
<p id="main">ee</p>
<p id="ss_main">ff</p>
<p id="main">gg</p>
<p id="main">hh</p>
<p id="main">ii</p>
<p id="main">jj</p>
<p id="ss_chap">xx</p>
<p id="ss_main">yy</p>
<p id="ss_chap">zz</p>
</section>
我的要求是通过覆盖以<ss_start>
开头的现有节点来放置名为<ss_end>
和ss
的新节点。
所以输出应该是,
<section>
<ss_start/>
<p id="ss_main">aa</p>
<p id="ss_chap">bb</p>
<ss_end/>
<p id="main">cc</p>
<p id="main">dd</p>
<p id="main">ee</p>
<ss_start/>
<p id="ss_main">ff</p>
<ss_end/>
<p id="main">gg</p>
<p id="main">hh</p>
<p id="main">ii</p>
<p id="main">jj</p>
<ss_start/>
<p id="ss_chap">xx</p>
<p id="ss_main">yy</p>
<p id="ss_chap">zz</p>
<ss_end/>
</section>
我可以编写如下的xsl来覆盖<ss_start>
和<ss_end>
<xsl:template match="p[@id='ss_main']">
<ss_start/>
<p id="ss_main"><xsl:apply-templates/></p>
<ss_end/>
</xsl:template>
但是我很难找到从ss
开始的id attr的连续节点,并由<ss_start>
和<ss_end>
覆盖。
有人可以建议我一个方法我该怎么做?
答案 0 :(得分:2)
在XSLT 1.0中,你可以这样做,它使用一种名为兄弟递归的技术(虽然兄弟遍历可能是一个更好的术语)。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output indent="yes" />
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="section">
<xsl:copy>
<xsl:apply-templates select="*[1]" />
</xsl:copy>
</xsl:template>
<xsl:template match="section/*[starts-with(@id, 'ss')]" priority="5">
<xsl:if test="self::*[not(preceding-sibling::*[1][starts-with(@id, 'ss')])]">
<ss_start />
</xsl:if>
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
<xsl:if test="self::*[not(following-sibling::*[1][starts-with(@id, 'ss')])]">
<ss_end />
</xsl:if>
<xsl:apply-templates select="following-sibling::*[1]" />
</xsl:template>
<xsl:template match="section/*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
<xsl:apply-templates select="following-sibling::*[1]" />
</xsl:template>
</xsl:stylesheet>
当针对您的输入运行时,将创建此输出:
<?xml version="1.0" encoding="UTF-8"?>
<section>
<ss_start/>
<p id="ss_main">aa</p>
<p id="ss_chap">bb</p>
<ss_end/>
<p id="main">cc</p>
<p id="main">dd</p>
<p id="main">ee</p>
<ss_start/>
<p id="ss_main">ff</p>
<ss_end/>
<p id="main">gg</p>
<p id="main">hh</p>
<p id="main">ii</p>
<p id="main">jj</p>
<ss_start/>
<p id="ss_chap">xx</p>
<p id="ss_main">yy</p>
<p id="ss_chap">zz</p>
<ss_end/>
</section>
我现在看到您使用xslt-2.0标记了您的问题,这意味着您可以使用分组。我将尝试使用XSLT 2.0中的示例进行更新。
在XSLT 2.0中,您可以使用布尔值true / false作为与组相邻的分组键,如下所示,这比上面的XSLT 1.0代码要短得多:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:output indent="yes" />
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="section">
<xsl:copy>
<xsl:for-each-group select="*" group-adjacent="starts-with(@id, 'ss')">
<xsl:if test="current-grouping-key()"><ss_start /></xsl:if>
<xsl:apply-templates select="current-group()" />
<xsl:if test="current-grouping-key()"><ss_end /></xsl:if>
</xsl:for-each-group>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:0)
你也可以使用......
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:output indent="yes" encoding="utf-8" omit-xml-declaration="yes" />
<xsl:strip-space elements="*" />
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="p[starts-with(@id, 'ss')]
[not(starts-with(preceding-sibling::p[1]/@id, 'ss'))]">
<ss_start />
<xsl:next-match />
</xsl:template>
<xsl:template match="p[starts-with(@id, 'ss')]
[not(starts-with(following-sibling::p[1]/@id, 'ss'))]">
<xsl:next-match />
<ss_end/>
</xsl:template>
</xsl:stylesheet>