xsl-list
[Top] [All Lists]

Re: [xsl] Determine position in node sequence based on criteria

2010-06-30 04:24:28
../s[matches(@c, '^[ab]$') and matches(., $re)]/position()

obviously wrong since it will always return 1, given the above XML, e.g., I 
need the position() in ../s not the position() of the resulting nodeset from 
the match criteria.

It sounds like instead of

/position()

you want

/preceding-sibling::s

wrapped in a count(1 + .....)


-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--