我有一个变量$colors,它是字符串
<xsl:variable name="colors" select="'red,green,blue,'" />
我需要一个新的变量$colorElements,它是一个节点集
<color>red</color>
<color>green</color>
<color>blue</color>
(对吗?一个节点集可以没有根吗?)
CCD_ 1将永远不会被直接输出。我只需要它作为一个列表变量。
XSLT1.0,除了node-set()
之外没有其他扩展。
使用:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<xsl:variable name="colors" select="'red,green,blue,'" />
<xsl:template match="/">
<xsl:variable name="colorElements">
<xsl:call-template name="split">
<xsl:with-param name="pText" select="$colors"/>
</xsl:call-template>
</xsl:variable>
<xsl:for-each select="msxsl:node-set($colorElements)">
<xsl:copy-of select="color"/>
</xsl:for-each>
</xsl:template>
<xsl:template name="split">
<xsl:param name="pText"/>
<xsl:variable name="separator">,</xsl:variable>
<xsl:choose>
<xsl:when test="string-length($pText) = 0"/>
<xsl:when test="contains($pText, $separator)">
<color>
<xsl:value-of select="substring-before($pText, $separator)"/>
</color>
<xsl:call-template name="split">
<xsl:with-param name="pText" select="substring-after($pText, $separator)"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<color>
<xsl:value-of select="$pText"/>
</color>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
这个怎么样?:
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs">
<xsl:output method="xml" indent="yes" encoding="utf-8" />
<xsl:variable name="colors" select="'red,green,blue,'" />
<xsl:template match="/" name="main">
<csv-to-xml>
<xsl:for-each select="tokenize($colors, ',')[position()!=last()]">
<!-- The predicate is needed because of the extraneous comma
at the end of the red,green,blue, list. -->
<color><xsl:value-of select="." /></color>
</xsl:for-each>
</csv-to-xml>
</xsl:template>
</xsl:stylesheet>