检查nil字段的值

时间:2011-09-13 22:23:00

标签: xslt xslt-1.0

我需要从XML中删除empty和nil标记。 这是我的下面的代码,需要帮助如何检查nil字段。

     <?xml version="1.0" encoding="UTF-8"?>
         <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8" indent="yes" />
    <xsl:template match="/">
    <xsl:call-template name="RemoveEmptyTagsMain">
        <xsl:with-param name="root" select="."></xsl:with-param>
    </xsl:call-template>
</xsl:template>
<xsl:template name="RemoveEmptyTags">
    <xsl:variable name="Value">
        <xsl:value-of select="." />
    </xsl:variable>
    <xsl:variable name="NodeCount" select="count(*)" />
    <xsl:choose>
        <xsl:when test="$NodeCount > 0">
            <xsl:copy>
                <xsl:copy-of select="@*" />
                <xsl:for-each select="child::*">
                    <xsl:call-template name="RemoveEmptyTags" />
                </xsl:for-each>
            </xsl:copy>
        </xsl:when>
        <xsl:otherwise>
            <xsl:if test="not(normalize-space($Value) = '') and not(Value=@xsl:nil)">
                <xsl:copy>
                    <xsl:copy-of select="@*" />
                    <xsl:value-of select="." />
                </xsl:copy>
            </xsl:if>
        </xsl:otherwise>
    </xsl:choose>
</xsl:template>
          <xsl:template name="RemoveEmptyTagsMain">
     <xsl:param name="root"/>
    <xsl:for-each select="$root">
        <xsl:call-template name="RemoveEmptyTags" />
    </xsl:for-each>
     </xsl:template>
     </xsl:stylesheet>

这是我要检查空的&amp; nillable标签。

<xsl:if test="not(normalize-space($Value) = '') and not(Value=@xsl:nil)">

我已检查过像<name xsi:nil="true">

这样的无标记代码

1 个答案:

答案 0 :(得分:2)

抛弃所有代码并使用它:

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

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

  <xsl:template match="*[not(*) and normalize-space() = '']" />

</xsl:stylesheet>

上面的样式表将复制任何非空的内容。

没有子元素的元素(*[not(*)])和具有空文本内容的元素(*[normalize-space() = ''])被第二个模板“抛弃”(即输出) ,其他所有内容都按照第一个模板进行复制。

要删除除了更多嵌套空元素之外的所有元素,可以将其用作第二个模板:

<xsl:template match="*[normalize-space() = '']" />