This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Node selection question


The context() function is not defined in XSLT so I guess you are using the
old Microsoft so-called-XSL? IF SO, PLEASE SAY SO!

Assuming you want an XSLT solution the answer is

<xsl:apply-templates select="//INFO-OBJ[not(parent::INFO-OBJ)]" />

or perhaps more efficiently:

<xsl:apply-templates 
		select="/descendant::*[not(self::INFO-OBJ)]/INFO-OBJ" />

Mike Kay

> What I want to do is to select all the INFO-OBJ nodes that
> are not children of INFO-OBJ nodes.  The following statement works but
> as this will be applied to many documents of different structures and
> I've only tested on one, I want to know if this is the best 
> way to make this sort of selection.
> 
> <xsl:apply-templates select="//INFO-OBJ[context()[not(INFO-OBJ)]]" />
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]