Re: [xsl] Name test

Subject: Re: [xsl] Name test
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 13 Sep 2004 14:01:13 +0100
> How do I test the name of a tag in a specific position?

tags don't have names, and XSLT can not access the tags in the document,
but to test if the second element child is B
test="*[2][self::B]"

> I want to test if tag in position 2 under <Root> really is <B>.
Note that is the second _element_ node but if you just use
apply-templates with its default selection of node(0 it will have
position()=4 as the nodes in positions 1 and 2 are white space text
nodes.

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