xsl-list
[Top] [All Lists]

[xsl] Unexpected behavior with tokenize function

2008-03-22 05:31:53

In my style sheet I am using the following fragment that uses the xalan extension function named tokenize:

     <xsl:for-each select="xalan:tokenize('prefix:namespace', ':')">
       <token>
         <xsl:value-of select="."/>
       </token>
     </xsl:for-each>

What I expected is the following output:

<token>
 prefix
</token>
<token>
 namespace
</token>

Instead what I get is:

<token>
 prefixnamespace
</token>

Can anyone please clue me in to why that is happening? Thanks.

ps: Many thanks Mukul for your helpful answer to the WSDL namespace map question. I will report back on my experience with that later.

--
Regards,
Farrukh Najmi

Web: http://www.wellfleetsoftware.com



--~------------------------------------------------------------------
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>
--~--

<Prev in Thread] Current Thread [Next in Thread>