1

我有输入 XML文件。如下。

<maindocument>
<first>
    <testing>random text</testing>
    <checking>random test</checking>
</first>
<testing>
<testing>sample</testing>
<checking>welcome</checking>
</testing>
<import>
    <downloading>valuable text</downloading>
</import>
</maindocument>

这是我想要的输出 XML

<maindocument>
<import>
    <doctype>Valuable</doctype>
    <docint>text</docint>
</import>
</maindocument>

当我在 Google 中搜索时,我得到的结果为XSL:Copy.

4

2 回答 2

2

尝试 ...

<xsl:stylesheet version="2.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="first|testing|checking" />

<xsl:template match="import">
 <xsl:copy> 
  <doctype><xsl:value-of select="substring-before(.,' ')" /></doctype>
  <docint><xsl:value-of select="substring-after(.,' ')" /></docint>  
 </xsl:copy> 
</xsl:template>

</xsl:stylesheet>
于 2012-07-31T13:14:34.823 回答
1

这种转变

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

 <xsl:template match="import">
     <maindocument>
      <xsl:copy>
       <doctype><xsl:value-of select="substring-before(*, ' ')"/></doctype>
       <docint><xsl:value-of select="substring-after(*, ' ')"/></docint>
      </xsl:copy>
     </maindocument>
 </xsl:template>
 <xsl:template match="text()"/>
</xsl:stylesheet>

应用于提供的 XML 文档时:

<maindocument>
    <first>
        <testing>random text</testing>
        <checking>random test</checking>
    </first>
    <testing>
        <testing>sample</testing>
        <checking>welcome</checking>
    </testing>
    <import>
        <downloading>valuable text</downloading>
    </import>
</maindocument>

产生想要的正确结果:

<maindocument>
   <import>
      <doctype>valuable</doctype>
      <docint>text</docint>
   </import>
</maindocument>
于 2012-07-31T13:21:34.410 回答