这是遵循 RFC4180 的解决方案的副本。逗号后的多余空格不应该在那里。
数据:
T:\ftemp>type emp2csv.xml
<Root>
<Metadata>
<id>A001</id>
<name>Test</name>
</Metadata>
<Employers>
<Employer id="111">
<Employee id="aaa"><Name>Rick</Name></Employee>
<Employee id="bbb"><Name>Ram</Name></Employee>
</Employer>
<Employer id="222">
<Employee id="ddd"><Name>Bob</Name></Employee>
<Employee id="dcc"><Name>Tan</Name></Employee>
</Employer>
</Employers>
</Root>
执行:
T:\ftemp>call xslt emp2csv.xml emp2csv.xsl
A001,Test,111,aaa,Rick
A001,Test,111,bbb,Ram
A001,Test,222,ddd,Bob
A001,Test,222,dcc,Tan
样式表:
T:\ftemp>type emp2csv.xsl
<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"/>
<xsl:variable name="commonFields"
select="/*/Metadata/id | /*/Metadata/name"/>
<xsl:template match="/">
<xsl:apply-templates select="Root/Employers/Employer/Employee"/>
</xsl:template>
<!--these elements are CSV fields-->
<xsl:template match="Employee">
<xsl:for-each select="$commonFields | ../@id | @id | Name">
<xsl:call-template name="doThisField"/>
<xsl:if test="position() != last()">,</xsl:if>
</xsl:for-each>
<xsl:text>
</xsl:text>
</xsl:template>
<!--put out a field escaping content-->
<xsl:template name="doThisField">
<!--field value escaped per RFC4180-->
<xsl:choose>
<xsl:when test="contains(.,'"') or
contains(.,',') or
contains(.,'
')">
<xsl:text>"</xsl:text>
<xsl:call-template name="escapeQuote"/>
<xsl:text>"</xsl:text>
</xsl:when>
<xsl:otherwise><xsl:value-of select="."/></xsl:otherwise>
</xsl:choose>
</xsl:template>
<!--escape a double quote in the current node value with two double quotes-->
<xsl:template name="escapeQuote">
<xsl:param name="rest" select="."/>
<xsl:choose>
<xsl:when test="contains($rest,'"')">
<xsl:value-of select="substring-before($rest,'"')"/>
<xsl:text>""</xsl:text>
<xsl:call-template name="escapeQuote">
<xsl:with-param name="rest" select="substring-after($rest,'"')"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$rest"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
编辑删除多余的模板规则。