2009-01-09 67 views
1

刪除所有文字怎麼能刪除所有文字,但留下的結構不變?如何從XML文檔

例如:

<animals> 
    <animal id="1"> 
    <type>cat</type> 
    <food> 
     <fav>miauwmjam</fav> 
     <quantity unit="day">50g</quantity> 
    </food> 
    </animal> 
</animals> 

轉化爲

<animals> 
    <animal id=""> 
    <type></type> 
    <food> 
     <fav></fav> 
     <quantity unit=""></quantity> 
    </food> 
    </animal> 
</animals> 

所以還屬性瓦萊斯是空的......

回答

4
<?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"/> 

    <!-- copy all nodes --> 
    <xsl:template match="node()"> 
    <xsl:copy> 
     <xsl:apply-templates select="@*|node()"/> 
    </xsl:copy> 
    </xsl:template> 

    <!-- clear attributes --> 
    <xsl:template match="@*"> 
    <xsl:attribute name="{name()}" /> 
    </xsl:template> 

    <!-- ignore text content of nodex --> 
    <xsl:template match="text()" /> 

</xsl:stylesheet>