Чтобы удалить все элементы <Student>
с заданными свойствами, вы можете использовать следующий пустой шаблон:
<xsl:template match="Student[contains(@Name,'<Choose One>') and contains(@Units,'<Choose One>')]" />
Чтобы скопировать все остальные элементы, вы можете использовать шаблон Identity
<!-- identity template -->
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>