从复杂的xml到“扁平”结构

时间:2011-09-19 13:56:36

标签: xslt

请,我正在尝试从“带注释的文本”中提取“纯文本”(或复杂内容中的简单内容)。

这是我输入的XML:

<l>string</l>
<l>string<g><b/>string2</g></l>
<l>string<g><b/>string2</b>string3</g></l>
<l>string<b/>string2<b/>string3</l>

这是我需要的输出:

<word>string</word>
<word>string1 string2</word>
<word>string1 string2 string3</word>
<word>string1 string2 string3</word>

基本上:(i)我不需要元素和(ii)用空格替换空元素

非常感谢!

1 个答案:

答案 0 :(得分:2)

你可以通过使用身份变换来实现这一点,但是用你的特殊情况覆盖它,如下所示:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <xsl:output method="xml" indent="no"/>

   <!-- Replace elements under root element with word element -->
   <xsl:template match="/*/*">
      <word>
         <xsl:apply-templates select="node()"/>
      </word>
   </xsl:template>

   <!-- Match, but don't copy, elements -->
   <xsl:template match="@*|node()">
      <xsl:apply-templates select="@*|node()"/>
   </xsl:template>

   <!-- Copy out text nodes -->
   <xsl:template match="text()">
      <xsl:copy/>
   </xsl:template>

   <!-- Replace empty element by space -->
   <xsl:template match="*[not(node())]">
      <xsl:text>&#160;</xsl:text>
   </xsl:template>

</xsl:stylesheet>

应用于以下XML

<data>
   <l>string</l>
   <l>string<g><b/>string2</g></l>
   <l>string<g><b/>string2<b/>string3</g></l>
   <l>string<b/>string2<b/>string3</l>
</data>

输出如下:

<word>string</word>
<word>string string2</word>
<word>string string2 string3</word>
<word>string string2 string3</word>