结合XSLT选择条件

时间:2015-09-02 18:36:20

标签: xml xslt

我正在尝试组合两个选择条件

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" doctype-public="XSLT-compat" omit-xml-declaration="yes" encoding="UTF-8" indent="yes" />

    <xsl:template match="@*|node()">
    <catalog>
                <xsl:for-each select="offer[contains(
             translate(name, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'),
             'test')]">
                <xsl:copy-of select="."/>
             </xsl:for-each>
       </catalog>
    </xsl:template>

</xsl:transform>

示例:

<catalog>   
<offer>
<name>test 1</name>
<delivery>1</delivery>
</offer>

<offer>
<name>test 2</name>
<delivery>2</delivery>
</offer>
</catalog>

我尝试按offer[delivery='1']过滤掉更多输出,但没有成功。所需的输出是:

<catalog>  
    <offer>
    <name>test 1</name>
    <delivery>1</delivery>
    </offer>
</catalog>

http://xsltransform.net/nc4NzRr

1 个答案:

答案 0 :(得分:1)

以这种方式尝试:

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="*"/>

<xsl:template match="/catalog">
    <xsl:copy>
        <xsl:copy-of select="offer[contains(translate(name, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'test') and delivery='1']"/>
    </xsl:copy>
</xsl:template>

</xsl:stylesheet>

请注意:

<xsl:copy-of select="offer[contains(translate(name, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz'), 'test')][delivery='1']"/>

会完成同样的事情。