我正在尝试在XSLT中使用tokenize函数,但它无法正常工作
<xsl:variable name="stringList" select="tokenize('XPath,is,fun', ',')"/>
<xsl:for-each select="$stringList">
<xsl:value-of select="." />
</xsl:for-each>
这有什么不对吗?我在eclipse和w3schools tutorial editor
中尝试过这个实际代码:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:rg="http://www....."
xmlns="http://wwww.w3.org/1999/xhtml" >
<xsl:template match="/">
<html>
<head>
<title>Temp</title>
</head>
<body>
<xsl:variable name="stringList" select="tokenize('XPath,is,fun', ',')" />
<xsl:for-each select="$stringList">
<xsl:value-of select="." /><br/>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
答案 0 :(得分:2)
Tokenize实际上是一个XSLT 2.0函数,因此您需要使用支持XSLT 1.0的XSLT处理器。 W3Schools的编辑只是XSLT 1.0。
我在http://xslttest.appspot.com/尝试了你的XSLT作为一个例子,它很愉快。