1<xsl:stylesheet version="1.0" 
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:b="http://b">
4
5<xsl:template match="@b:*"/>
6
7<xsl:template match="*">
8 <xsl:copy>
9   <xsl:apply-templates select="*|@*"/>
10 </xsl:copy>
11</xsl:template>
12
13<xsl:template match="@*">
14 <xsl:copy/>
15</xsl:template>
16
17</xsl:stylesheet>
18