xsl-list
[Top] [All Lists]

RE: [xsl] Pattern question: first child of first descendant

2009-03-23 21:37:38
Syd's pattern is pretty good here. I'm not sure of the exact order of 
operations for the position predicate here, so I'd be safe and do this:

(table//entry)[1]/*[self::title or self::para][1]

~ Scott


-----Original Message-----
From: Syd Bauman [mailto:Syd_Bauman(_at_)Brown(_dot_)edu] 
Sent: Monday, March 23, 2009 8:19 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Pattern question: first child of first descendant

I am looking for a pattern that does "match the first title or para
child of the first entry descendant of a table element". I'm using
XSLT2.

There may well be something better, but I would probably have used:
  table//entry[1]/*[self::title or self::para][1]

HTH


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


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