XSLT 1.0计算,然后复制子结束的结构 -

时间:2017-02-28 16:42:54

标签: xslt

如果计数大于5,我必须复制邮件以&#34; test.com&#34;结尾的所有集合。我已经尝试了几件事,但似乎没有任何作用。< / p>

如何使用xslt 1.0执行此操作?

<root>
    <sets>
        <set>
            <mail>a@test.com</mail>
            <foo/>
        </set>
        <set>
            <mail>a@test.net</mail>
            <foo/>
        </set>
        <set>
            <mail>b@test.com</mail>
            <foo/>
        </set>
    </sets>
</root>

例如我试过这个:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
    <xsl:if test="count(/root/sets/set[mail = '*test.com'])">
        <root>
            <sets>
                <xsl:for-each select="/root/sets/set">
                    <xsl:if test="contains(./mail, 'test.com')">
                        <xsl:copy-of select="./*"/>
                    </xsl:if>
                </xsl:for-each>
            </sets>
        </root>
    </xsl:if>
</xsl:template>
</xsl:stylesheet>

1 个答案:

答案 0 :(得分:1)

  

我必须复制邮件以&#34; test.com&#34;结尾的所有集合。

怎么样:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

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

<xsl:template match="sets">
    <xsl:copy>
        <xsl:apply-templates select="set[substring-after(mail, '@')='test.com']"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>