使用XSLT将XML转换为CSV

时间:2011-09-03 16:28:46

标签: xml xslt xpath csv

使用XSLT转换将XML转换为CSV

<start>
<article>
<key>key1</key>

<definition type="m">
<![CDATA[abcdefghijk]]>
</definition>
</article>

<article>
<key>key2</key>

<definition type="m">
<![CDATA[bcdefghijkl]]>
</definition>
</article>
</start>

csv看起来像

key1,abcdefghijk
key2,bcdefghijkl

我学习w3c学校的xslt教程,但无法练习。 有人可以编写XSLT代码进行转换吗?

2 个答案:

答案 0 :(得分:1)

您可以使用单个模板获得所需结果:

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

    <xsl:template match="start/article">
        <xsl:if test="position()>1">
            <xsl:text>&#xA;</xsl:text>
        </xsl:if>
        <xsl:value-of select="normalize-space(
            concat(key,'; ',definition))"/>
    </xsl:template>

</xsl:stylesheet>

答案 1 :(得分:0)

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

  <xsl:template match="/">
    <xsl:apply-templates select="//article/*"/>
  </xsl:template>

  <xsl:template match="key">
    <xsl:copy-of select="normalize-space(concat(., ';'))"/>
  </xsl:template>

  <xsl:template match="definition">
    <xsl:copy-of select="normalize-space(.)"/>
    <xsl:text>&#xD;&#xA;</xsl:text>
  </xsl:template>

</xsl:stylesheet>