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

RE: Determine position in node sequence based on crite

Subject: RE: Determine position in node sequence based on criteria
From: "Houghton,Andrew" <houghtoa@xxxxxxxx>
Date: Wed, 30 Jun 2010 09:39:43 -0400
RE:  Determine position in node sequence based on crite
> From: Michael Kay [mailto:mike@xxxxxxxxxxxx]
> Sent: Wednesday, June 30, 2010 05:40 AM
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re:  Determine position in node sequence based on
> criteria
>
> In XQuery you could do
>
> for $s at $p in ../s where matches($s/@c, '^[ab]$') and matches($s,
> $re)
> return $p
>
> The nearest equivalent in XPath 2.0 is
>
> for $p in 1 to count(../s), $s in (../s)[$p] return
> if (matches($s/@c, '^[ab]$') and matches($s, $re)) then $p else ()
>
> But I agree it's rather cumbersome.

Agreed. It seems like it would be real handy to have position() take
an argument:

 position(../s[])

and return the position of the matching items... or loosen the
restrictions on position() in a for expression, or have a different
function where you could get the position in a for expression:

for $i in ../s
 if (...) then $i/position() else ()


Thanks, Andy.

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.