xsl-list
[Top] [All Lists]

Re: [xsl] To find out immediate following tag

2008-10-01 05:01:26
2008/10/1 J. S. Rawat <jrawat(_at_)aptaracorp(_dot_)com>:
Hi,
Anyone who can help me. I want to merge <a1> within <a> if it is immediate
following it. "following::a1[1]" is not working properly.


you want "following-sibling::*[1][self::a1]"

which gets the very next sibling, then tests to see it its an <a1>.

"following::a1[1]" will return the next <a1> regardless of where it
occurs after the current node.


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

<Prev in Thread] Current Thread [Next in Thread>