使用XSLT删除XML节点文本

时间:2015-06-15 08:54:44

标签: xml xslt xslt-2.0

我需要使用XSLT修改xml文档。我需要的是从xml文档中删除一些节点名称。

示例:

<link ref="www.facebook.com">
       <c type="Hyperlink">www.facebook.com<c>
</link>

我需要按如下方式转换此xml(删除<c>节点和属性形式xml),

<link ref="www.facebook.com">
       www.facebook.com
</link>

我试图在很多方面做到这一点,但没有一个很好。 任何建议我该怎么做?

2 个答案:

答案 0 :(得分:3)

以这种方式:

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

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

<xsl:template match="c">
    <xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>

这是另一个:

<xsl:template match="link">
    <xsl:copy>
        <xsl:copy-of select="@* | c/text()"/>
    </xsl:copy>
</xsl:template>

答案 1 :(得分:1)

这是另一种方法:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="link">
    <link>
    <xsl:copy-of select="@*"/><!-- copies the @ref attribute (and any other) -->    
    <xsl:value-of select="c[@type='hyperlink']"/>
    </link>    
</xsl:template>