【发布时间】:2015-06-18 09:55:31
【问题描述】:
我正在尝试从 SharePoint 列表中提取列表项并使用 Nintex Workflow 将它们转换为 CSV 文件的方法。
尝试与Click here 中发布的类似解决方案,我设法从 SharePoint 中提取数据,但我在 nitex 中遇到了 XML2CSV 转换节点的一些问题。 我有这段代码,
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="iso-8859-1"/>
<xsl:template match="/child::*">
<xsl:for-each select="child::*">
{WorkflowVariable:textXSLChunk}
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
但是当他们在备注字段中是“,”时,它会将其视为下一个字段。我怎样才能让它跳过字段值中的“,”条目。
【问题讨论】:
标签: xml csv xslt sharepoint-2010