xsl-list
[Top] [All Lists]

Re: [xsl] how to test previous node name

2007-02-11 14:06:27
On 2/11/07, xslt. new <xslt(_dot_)new(_at_)gmail(_dot_)com> wrote:
Hi all:

I have an XML input:

<test1>
<item></item>
<text></text>
<item></item>
</test1>

How do I check if the previous node name for <item> is test1 or text?


select="preceding::*[1][self::item1 or self::text]"

cheers
andrew

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