<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" />

<xsl:template match="/main/a[1]/b/c[1]">  <!-- edit the XPath expression !! -->
START NODE --  <xsl:copy-of select="." /> -- END NODE
</xsl:template>

<xsl:template match="text()|@*" ></xsl:template> <!-- override builtin template that copies over text and attribute nodes -->

</xsl:stylesheet>


