0

我有一个类似于以下内容的 XML 文件:

<doc>
  <element>
    <word>
      <text>one word</text>
    </word>
    <word>
      <text>two words</text>
    </word>
  </element>
  <element>
    <other>
      <text>the sky</text>
    </other>
    <word>
      <text>NN NN</text>
    </word>
  </element>
</doc>

而且我希望只有一个标签和行的内容,当有两个接一个时,就像这样:

<element>
    <word>
      <text>one word</text>
       <text>two words</text>
    </word>
</element>

问题是我正在生成一个<xsl:element>以获取<word>标签。这<xsl:element>已经在一个<xsl:for-each>循环中,<word>以正确的顺序放置标签(过滤属性)。

我以前的 XML 文档是这样的:

<doc>
  <element class="word">
    <text>one word</text>
  </element>
  <element class="word">
    <text>NN NN</text>
  </element>
  <element class="word">
    <text>two words</text>
  </element>
  <element class="other">
    <text>the sky</text>
  </element>
</doc>

任何帮助都会很棒,谢谢:)

- 更多细节 -

这是我想要的结果:

<doc>
   <element>
      <word>
         <text>one word</text>
         <text>two words</text>
      </word>
   </element>
   <element>
      <other>
         <text>the sky</text>
      </other>
      <word>
         <text>NN NN</text>
      </word>
  </element>
</doc>

而且我无法指定标签其他,因为我没有封闭的标签列表。所以我使用xsl:variable

<xsl:for-each select="element">
    <xsl:variable name="name">
      <xsl:value-of select="@class"/>
    </xsl:variable>
    <xsl:element name="{$name}">
        <text>
          <xsl:value-of select="."/>
        </text>
    </xsl:element>
</xsl:for-each>
4

3 回答 3

1

试试这个:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="element/*">
    <xsl:if test="not(preceding-sibling::*[name() = name(current())])">
      <xsl:copy>
        <xsl:apply-templates select="* | following-sibling::*[name()=name(current())]/*" />
      </xsl:copy>
    </xsl:if>
  </xsl:template>

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

element它只是查找之前没有同名兄弟的任何子节点(即每个兄弟中的第一个),然后将模板应用于它自己的子节点和任何后续同名兄弟的子节点.

于 2012-10-22T12:48:51.933 回答
0

您只需使用<xsl:apply-templates/>...即可“解包”元素

XML 输入

<doc>
    <element>
        <word>
            <text>one word</text>
        </word>
        <word>
            <text>two words</text>
        </word>
    </element>
    <element>
        <other>
            <text>the sky</text>
        </other>
        <word>
            <text>NN NN</text>
        </word>
    </element>
</doc>

XSLT 1.0

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes"/>
    <xsl:strip-space elements="*"/>

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

    <xsl:template match="element">
        <xsl:copy>
            <word>
                <xsl:apply-templates/>
            </word>
        </xsl:copy>
    </xsl:template>

    <xsl:template match="word|other">
        <xsl:apply-templates/>
    </xsl:template>

</xsl:stylesheet>

输出

<doc>
   <element>
      <word>
         <text>one word</text>
         <text>two words</text>
      </word>
   </element>
   <element>
      <word>
         <text>the sky</text>
         <text>NN NN</text>
      </word>
   </element>
</doc>
于 2012-10-19T15:42:22.923 回答
0

这种转变

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

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

 <xsl:template match="element/*"/>
 <xsl:template match="element/*[1]">
     <word>
       <xsl:apply-templates select="../*/*"/>
     </word>
 </xsl:template>
</xsl:stylesheet>

应用于提供的 XML 文档时

<doc>
    <element>
        <word>
            <text>one word</text>
        </word>
        <word>
            <text>two words</text>
        </word>
    </element>
    <element>
        <other>
            <text>the sky</text>
        </other>
        <word>
            <text>NN NN</text>
        </word>
    </element>
</doc>

产生(我猜是)想要的正确结果

<doc>
   <element>
      <word>
         <text>one word</text>
         <text>two words</text>
      </word>
   </element>
   <element>
      <word>
         <text>the sky</text>
         <text>NN NN</text>
      </word>
   </element>
</doc>
于 2012-10-19T18:27:30.197 回答