Or would this work even better for you:
<xsl:for-each select="//@xml:id[.=$string-sequence]">
It's possible (and preferable) to write that as:
<xsl:for-each select="id($string-sequence)">
isn't it?
I've never used it but it worked in a quick sanity test I just did....
It's a bit like passing a sequence to key()
--
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>
--~--