我试图以递归方式从xml中删除'empty'元素(没有子元素,没有属性或空属性)。这是我的XSLT
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[not(*) and
string-length(.)=0 and
(not(@*) or @*[string-length(.)=0])]">
<xsl:apply-templates/>
</xsl:template>
这是输入XML。我希望将这个XML转换为空字符串
<world>
<country>
<state>
<city>
<suburb1></suburb1>
<suburb2></suburb2>
</city>
</state>
</country>
</world>
但我得到了
<world>
<country>
<state/>
</country>
</world>
有人可以帮忙吗?我在论坛上研究了很多线程,但仍然没有运气。
答案 0 :(得分:6)
对于任何有孩子的元素,条件not(*)
为false - 无论孩子包含什么。
如果你想&#34;修剪&#34;任何没有携带水果的树枝#34;尝试:
XSLT 1.0
<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="*"/>
<xsl:template match="*[descendant::text() or descendant-or-self::*/@*[string()]]">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*[string()]">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>
答案 1 :(得分:1)
所以,打击空白,试试这个:
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="*[not(*) and
string-length(normalize-space(.))=0 and
(not(@*) or @*[string-length(normalize-space(.))=0])]">
<xsl:apply-templates/>
</xsl:template>