xsl-list
[Top] [All Lists]

Re: Reusing Variables!!

2004-01-09 03:26:26

but how can I get what I want here?

It would have been easier to answer this if you'd have said what result
you wanted rather than just post some code that doesn't work, as only
you really know what you intended that to do.

Asside from variable bindings why are you using concat to adjoin the
empty string '' to things that is essentially a no-op?

Your for-each is apparrently concatenating all the namee attributes,
with no separator so I think you probably want

<xsl:variable name="url">
<xsl:value-of select="breakdown[(_at_)sort='page']/@data"/>
<xsl:text>1</xsl:text>
<xsl:for-each select="breakdown[(_at_)sort='param' and @type='fixed']">
    <xsl:value-ofselect="@name"/>
</xsl:for-each>
</xsl:variable>
-- 
http://www.dcarlisle.demon.co.uk/matthew

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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



<Prev in Thread] Current Thread [Next in Thread>