我正在尝试处理这个XML文件,我希望根据最新的节点值删除所有匹配的节点。 在以下示例中,最新节点值为“$ {DELETE}” 最新节点值将始终为“$ {DELETE}”,节点将始终位于XML文件的底部。
示例:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<projects>
<project id="properties1">
<property name="prop1">some-value</property>
<property name="prop2">abc</property>
<property name="prop3">def</property>
</project>
<project id="properties2">
<property name="prop">testing prop from pom.xml</property>
<property name="prop1">${DELETE}</property>
<property name="prop4">abc</property>
<property name="prop5">xyz</property>
</project>
</projects>
预期输出为:
<projects>
<project id="properties1">
<property name="prop2">abc</property>
<property name="prop3">def</property>
</project>
<project id="properties2">
<property name="prop">testing prop from pom.xml</property>
<property name="prop4">abc</property>
<property name="prop5">xyz</property>
</project>
</projects>
答案 0 :(得分:1)
使用XSLT 2.0和XSLT 2.0处理器,您可以使用
<xsl:stylesheet version="2.0" exclude-result-prefixes="xs"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:key name="prop" match="property" use="@name"/>
<xsl:variable name="prop-to-delete" select="/projects/project[last()]/property[. = '${DELETE}']/@name"/>
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="key('prop', $prop-to-delete)"/>
</xsl:stylesheet>
使用XSLT 1.0,您不能使用变量引用或路径作为匹配模式中的关键参数,因此您必须说明条件:
<xsl:stylesheet version="1.0" exclude-result-prefixes="xs"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="property[@name = /projects/project[last()]/property[. = '${DELETE}']/@name]"/>
</xsl:stylesheet>