This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: possible to mimic while-like behavior?


> If there existed a string-function split(string,string) which produced a 
> node-set result, one could:
> 
> <ex @someval="1,2,3,4,5,6,7" />
> <xsl:template match="ex">
> <xsl:for-each select="split(@someval,',')">
>     ....
> </xsl:for-each>
> </xsl:template>
> 
> Jonathan Borden
> 

Funny you should mention that: Saxon has an extension function tokenize()
which does just that. It's a rather heavy solution, creating a new node-set
seems overkill, but in the absence of an orthogonal type system allowing a
set-of-strings, its the best one can do.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]