Subject: Re: Storing an XPath fragment in a variable
From: Jason Kohls <jasonkohls@xxxxxxxxx>
Date: Thu, 14 Jul 2005 09:05:36 -0400
|
On 7/14/05, Joris Gillis <roac@xxxxxxxxxx> wrote:
> It can be used inside a predicate. example:
>
> <xsl:variable name="query">red green blue</xsl:variable>
>
> <xsl:template match="foo">
> <xsl:apply-templates select="*[contains($query,name())]"/>
> </xsl:template>
Ah, yup that make sense. Very tidy. Thank you!
> 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@xxxxxxxxxxxxxxxxxxxxxx>
> --~--
|