[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Nested for-each-group

Subject: RE: Nested for-each-group
From: "Andrew Welch" <ajwelch@xxxxxxxxxxxxxxx>
Date: Tue, 28 Sep 2004 14:01:13 +0100
nested for each and position
Thanks Mike,

Plenty to work with there :)

Cheers
andrew


> group-starting-with and group-ending-with partition the
> population: the first/last item in the population starts/ends
> a group whether or not it matches the pattern.
>
> The simplest way to discard the spurious groups in this case
> is probably to do
>
> xsl:if test="position()=last()"
>
> in the outer group, and
>
> xsl:if test="position()=1"
>
> in the inner group.
>
> An interesting way of tackling the problem. I think I would have used
> "intersect":
>
> <div>
>  <xsl:value-of select="
>     sum (
>       (col[@colname=$s]/(.|following-sibling::col)
>                intersect
>        col[@colname=$e]/(.|preceding-sibling::col))/@width)"/>
> </div>
>
> Unless I thought about it more carefully (!), in which case I
> would use a predicate of the form:
>
> sum(col[. is $S or . is $E or (. >> $S and . << $E)])
>
> Yet another solution:
>
> for $s in index-of(col/@colname, $start),
>     $e in index-of(col/@colname, $end)
> return
>     sum(subsequence(col/@width, $s, $e - $s + 1)),

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.