xsl-list
[Top] [All Lists]

Re: substring

2006-01-10 06:06:13


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
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--



<Prev in Thread] Current Thread [Next in Thread>
  • substring, dan
    • Re: substring, David Carlisle <=