http://onion.net/genericforms
split (values : string, separator : string) : nodeset
The method split divides up a given text with a given separator into an array.
<xsl:variable name="split" select="o:split('a b c', ' ')" />
<xsl:for-each select="$split">
<xsl:value-of select="." />
<br />
</xsl:for-each>In the example, the string “a b c” is subdivided using the separator " ". The divided texts are then output.