|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: limiting a apply-template
Sam Carleton wrote:
> This is what I have:
>
> <xsl:apply-templates select="//*[@url=$docUri]" mode="dspLocal"/>
>
> Normally the url attribute in the XML will be unique, but not
> always. When it is not unique, I only want to process the first
> node it finds. How do I do that?
(//*[@url=$docUri])[1]
Of course if you can eliminate the //* and provide a more specific path,
it will be faster. Or use keys:
<xsl:key name="elem-by-url" match="*" use="@url"/>
...
<xsl:template ...>
...
<xsl:apply-templates select="key('elem-by-url',$docUri)"/>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








