我最喜欢的方法是:<xsl:stylesheet><xsl:output method='text'/><xsl:variable name='newline'><xsl:text></xsl:text></xsl:variable><!-- note that the layout there is deliberate -->...</xsl:stylesheet>然后,无论何时要输出换行符(也许在csv中),都可以输出如下内容:<xsl:value-of select="concat(elem1,elem2,elem3,$newline)" />从xml输入输出sql时,我已经使用了这种技术。实际上,我倾向于为逗号,引号和换行符创建变量。