xsl-list
[Top] [All Lists]

Re: [xsl] how to test previous node name

2007-02-11 15:40:39
Andrew Welch wrote:
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]"

I think (s)he meant (guessing):

select="preceding::*[1][self::text] | parent::test1/*[1][generate-id(.) eq generate-id(current())]"

but the OP is pretty unclear about what he wants (can text node be named test1, can test1 be something else then a parent etc? What is the context node?) and fails to include his own tryouts.

-- Abel




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