xsl-list
[Top] [All Lists]

[xsl] "'tokenize' is not a valid XSLT or XPath function."

2006-06-22 15:04:14
<?xml version='1.0' encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
        <xsl:variable name="placementToken" select="tokenize('1-2-3','-')" />

        <xsl:variable name="placementMM" select="item-at($placementToken,0)" />
        <xsl:variable name="placementDD" select="item-at($placementToken,1)" />
        <xsl:variable name="placementYYYY" select="item-at($placementToken,2)" 
/>

-----

Before I begin tinkering with MSXML installation, is there something
I'm not seeing?

-Steve

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--