复制所有节点排除已修改节点

时间:2014-02-14 19:12:37

标签: xml xslt xpath xml-parsing xslt-1.0

我有一个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>

2 个答案:

答案 0 :(得分:1)

这会小一些

<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>

答案 1 :(得分:0)

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

<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>