复制所有节点,排除修改的节点



我有一个xml,如下所示:

<root>
  <book>abcd</book>
  <pen>ghi</pen>
  <source Qual="poor" vise="n">
    <source>
      <input value="in"></input>
      <input></input>
    </source>
  </source>
  <class>ab</class>
  <source>noaatributes</source>
  <studio>ghi</studio>
  <source Qual="good" vise="m">
    <source>
      <input></input>
      <input value="out"></input>
    </source>
  </source>
</root>

我想以以下格式转换 xml:

<?xml version="1.0" encoding="utf-8" ?>
<root>
  <book>abcd</book>
  <pen>ghi</pen>
  <poor value="in"/>

  <class>ab</class>
  <source>noaatributes</source>
  <studio>ghi</studio>
  <good value="out"/>

</root>

但是我编写的代码没有给出所需的输出。我卡在了编码的中间。任何建议请。这是我到目前为止编写的代码:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="@* | node()">

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

  </xsl:template>

  <xsl:template match="source/@Qual">
    <xsl:text disable-output-escaping="yes" ><![CDATA[  
    <]]></xsl:text>
    <xsl:value-of disable-output-escaping="yes" select="."/>
  </xsl:template>
  <xsl:template match="source/source">
    <xsl:apply-templates select="input"/>
    <xsl:text disable-output-escaping="yes" ><![CDATA[  
    />]]></xsl:text>
  </xsl:template>
  <xsl:template match="input">
    <xsl:if test ="string-length(./@value) &gt; 0">
      <xsl:text disable-output-escaping="yes" ><![CDATA[    
      ]]></xsl:text>
      <xsl:text disable-output-escaping="yes" ><![CDATA[Value="]]></xsl:text>
      <xsl:value-of disable-output-escaping="yes" select="./@value"/>
      <xsl:text disable-output-escaping="yes" ><![CDATA[" ]]></xsl:text>
    </xsl:if>
  </xsl:template>
</xsl:stylesheet>

这会小一点

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node() | @*">
    <xsl:copy>
        <xsl:apply-templates select="node() | @*" />
    </xsl:copy>
</xsl:template>
<xsl:template match="root/source[@Qual]">
    <xsl:element name="{@Qual[1]}">
        <xsl:copy-of select="source/input/@value[1]"/>
    </xsl:element>
</xsl:template>
</xsl:stylesheet>

要获得所需的输出,可以简单得多:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
    <xsl:output method="xml" indent="yes"/>
    <xsl:template match="root">
        <xsl:copy>
            <xsl:apply-templates/>
        </xsl:copy>
    </xsl:template>
    <xsl:template match="*[not(source[@Qual])]">
        <xsl:copy-of select="."/>
    </xsl:template>
    <xsl:template match="source[@Qual]">
        <xsl:element name="{@Qual}">
            <xsl:attribute name="value">
                <xsl:value-of select="source/input/@value" />
            </xsl:attribute>
        </xsl:element>
    </xsl:template>
</xsl:stylesheet>

相关内容

  • 没有找到相关文章

最新更新