Possible Duplicate:
Does xslt have split() function?
I want to tokenize a comma-separated variable in my XSL style sheet, then iterate over the tokens using for-each to print the value of each token, what's the best way to do this?
<xsl:variable name="columns" select="'EMPID,NAME,DEPT"/>
<xsl:for-each select=???/>
<!-- print name of token -->
</xsl:for-each>