使用xslt

时间:2017-07-06 21:53:24

标签: xml xslt-1.0

我相信这个样式表应该用CogIdentifier = 35806删除COG元素,但事实并非如此。请协助。

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" indent="yes"/>


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

  <!--this should remove the cogs with the specified ID but it is not. bug-->
  <xsl:template match="//TRAN/DAY/COG[CogIdentifier/text()='35806']">
  </xsl:template>


</xsl:stylesheet>

1 个答案:

答案 0 :(得分:-1)

您可以使用此

<xsl:template match="COG[CogIdentifier='35806']"/>