|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Re: Enclosing sequence items in single quotes
On 19/10/2007, cknell@xxxxxxxxxx <cknell@xxxxxxxxxx> wrote: > I spoke too soon. What I'm getting with each suggestion is a single string containing all the string values of the matched elements with single quotes at each end. > > e.g. > > 'AA BB CC DD EE GG ... ZZ' > > Any other ideas? in which case $pf-codes must be a sequence of one item, rather than a sequence of many items... looking back at your original post you have: <xsl:variable name='pf-codes'> <xsl:value-of select="position-translation/position/code[@pf='pf']"/> </xsl:variable> which would cause what you're seeing - you probably want: <xsl:variable name='pf-codes' select="position-translation/position/code[@pf='pf']" as="xs:string+"/> ...which would give you sequence of many items. cheers -- Andrew Welch http://andrewjwelch.com Kernow: http://kernowforsaxon.sf.net/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






