Я хотел бы использовать xslt для преобразования XML-файла в почти идентичный XML-файл, но вырезать узлы на основе атрибута. Если у узла есть атрибут, его дочерние элементы не копируются в выходной файл. Например, я хочу удалить узлы из следующего XML-файла, которые имеют атрибут «исправно» «not_really»
это xml для преобразования
<diet>
<breakfast healthy="very">
<item name="toast" />
<item name="juice" />
</breakfast>
<lunch healthy="ofcourse">
<item name="sandwich" />
<item name="apple" />
<item name="chocolate_bar" healthy="not_really" />
<other_info>lunch is great</other_info>
</lunch>
<afternoon_snack healthy="not_really" >
<item name="crisps"/>
</afternoon_snack>
<some_other_info>
<otherInfo>important info</otherInfo>
</some_other_info>
</diet>
это желаемый вывод
<?xml version="1.0" encoding="utf-8" ?>
<diet>
<breakfast healthy="very">
<item name="toast" />
<item name="juice" />
</breakfast>
<lunch healthy="ofcourse">
<item name="sandwich" />
<item name="apple" />
<other_info>lunch is great</other_info>
</lunch>
<some_other_info>
<otherInfo>important info</otherInfo>
</some_other_info>
</diet>
это то, что я пытался (без успеха:)
<?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()[@healthy=not_really]"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>