Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edegula/8aa2a0c6daa1108d149b to your computer and use it in GitHub Desktop.
Save edegula/8aa2a0c6daa1108d149b to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match=" node() | @* ">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<xsl:template match="Department/Course[@Enrollment &gt; 60]" />
<xsl:template match="Department/Course[not(@Enrollment)]" />
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment