如果子元素的属性与给定值匹配,则删除XML节点

时间:2012-11-29 07:21:37

标签: xslt

我是xslt中的新bie,如果其中一个子元素属性值与特定字符串匹配,我需要从xml文件中删除整个节点。 输入xml文件如下:

    <?xml version="1.0" encoding="UTF-8"?>
    <gpm xmlns="http://www.airbus.com/topcased/gPM" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.airbus.com/topcased/gPM">
    <version>1.2</version>
        <version>1.2</version>
<filters>
  <sheetFilter description=" " labelKey="Liste de distribution" hidden="false">
    <userLogin>TO44452</userLogin>
    <resultSummary>
      <fieldResult name="DL_NAME"/>
      <fieldResult name="DL_USERS"/>
      <fieldResult name="$SHEET_STATE"/>
    </resultSummary>
    <scope>
      <productScope name="$CURRENT_PRODUCT" includeSubProducts="false"/>
    </scope>
    <containers>
      <sheetTypeRef name="DistributionList"/>
    </containers>
  </sheetFilter>
  <sheetFilter .../>
          ....
        </filters>
    </gpm>

如果element的name属性与特定值匹配,我必须删除整个节点。

我使用的xslt文件是:

<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="1.1"
    xmlns="http://www.airbus.com/topcased/gPM"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:gpmns="http://www.airbus.com/topcased/gPM"
    exclude-result-prefixes="gpmns">

    <xsl:output method="xml" encoding="UTF-8" indent="yes" />

    <!-- Delete extra blank lines -->
    <xsl:strip-space elements="*"/>

    <!-- template for any attribute node, copy  -->
    <xsl:template match="*|@*" name="copy_all">
        <xsl:copy disable-output-escaping="yes">
            <xsl:apply-templates select="@*"/>
            <xsl:apply-templates select="node()"/>
        </xsl:copy>
    </xsl:template>

        <xsl:template match="gpmns:sheetTypeRef[@name = 'DL']">
        <xsl:apply-templates match="gpmns:sheetFilter"/>
        </xsl:template> 
</xsl:stylesheet> 

我得到的转变是:

<?xml version="1.0" encoding="UTF-8"?>
<gpm xmlns="http://www.airbus.com/topcased/gPM" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.airbus.com/topcased/gPM">
<version>1.2</version>
<filters>
<sheetFilter description=" " labelKey="Liste de distribution" hidden="false">
<userLogin>TO44452</userLogin>
<resultSummary>
<fieldResult name="DL_NAME"/>
<fieldResult name="DL_USERS"/>
<fieldResult name="$SHEET_STATE"/>
</resultSummary>
<scope>
<productScope name="$CURRENT_PRODUCT" includeSubProducts="false"/>
</scope>
<containers/>
</sheetFilter>
<sheetFilter ..... />

先谢谢..

2 个答案:

答案 0 :(得分:0)

管理它至少有两种可能性:

<xsl:apply-templates select="filters/sheetFilter"/>

<xsl:template match="filters/sheetFilter[containers/sheetTypeRef/@name != 'DL']">
    … your output goes here …
</xsl:template>

<xsl:apply-templates select="filters/sheetFilter[containers/sheetTypeRef/@name != 'DL']"/>

<xsl:template match="filters/sheetFilter">
    … your output goes here …
</xsl:template>

取决于您的目的。

答案 1 :(得分:0)

最后我能找到如下解决方案: 对某些人来说可能是有用的。

<xsl:template match="sheetFilter[*/sheetTypeRef[@name='DistributionList']]"/> 

感谢Rodion的建议。

苏珊