Subject: Re: substring
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 10 Jan 2006 13:06:13 GMT
|
> It is the substring-after part
> that I am having problems with.
The only thing wrong with the substring-after call is that you are missing teh
closing )
> This part - child::*[preceding-sibling::* = 'Location'] works well to grab
> the <string>
It selects all children that have that have any preceding-sibling
element with value 'Location'.
XSLT1 will then take the first selected element to generate the string
for substring-after, XSLT2 would generate an error saying that you can
not pass more than one node to this function.
I think you want the first element after that key, so a more natural way
to write it would be
select="key[.='Location']/following-sibling::*[1]
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
| Current Thread |
- substring
- dan - 10 Jan 2006 12:42:21 -0000
- David Carlisle - 10 Jan 2006 13:06:24 -0000 <=
|
|