我有一个简单的xml:
<custom-objects>
<custom-object id="1">
<object-attribute attribute-id="address1">Warndtstr. 33</object-attribute>
<object-attribute attribute-id="branch">01</object-attribute>
<object-attribute attribute-id="catalogid">7991</object-attribute>
<object-attribute attribute-id="exportdate">2015-09-19</object-attribute>
</custom-object>
<custom-object>
...
</custom-object>
</custom-objects>我试图简单地复制每个<custom-object>元素,其中包含一个子元素,其中@attribute-id是"exportdate",并且有一个特定的文本值。
以下是我的xslt:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="custom-object[object-attribute[@attribute-id='exportdate']='2015-09-19']"/>
</xsl:stylesheet>当使用xpath时,匹配是有效的。xslt返回一个空结果。
发布于 2016-05-10 07:43:22
“我试图简单地复制每个包含@attribute-id为"exportdate”并具有特定文本值的子元素。“
应该用于删除元素的空模板。因此,当前,XSL应该删除“exportdate”等于“2015-09-19”的custom-object,并复制其他元素。如果您希望相反,请尝试使用具有相反含义的XPath,例如:
<xsl:template
match="custom-object[not(object-attribute[@attribute-id='exportdate']='2015-09-19')]"/>https://stackoverflow.com/questions/37132078
复制相似问题