I want to tokenize a string into space separated words.
<string>
<upara> This is a small sentence </upara>
</upara>
I have done this using template
<xsl:call-template name="tokenizeString">
<xsl:with-param name="list" select="/string/upara"/>
<xsl:with-param name="delimiter" select="' '"/>
</xsl:call-template>
But i dont want to use template. Is this possible without template ??
<xsl:for-each select=" ????" >
how i want to loop over each word in the string.
Also i tride using
EXSLT str:tokenize
But i cannot make it work.