Re: [xsl] pre/post text

Subject: Re: [xsl] pre/post text
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 31 May 2005 17:49:21 +0100
  How do I query for preceding and suceeding text
  surrounding an element?

depending what you mean

../text() is all such nodes

or
preceding-sibling::node()[1][self::text()]
following-sibling::node()[1][self::text()]

are the immediately following and preceding nodes if they are text, and
empty otherwise

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
  • [xsl] pre/post text
    • jpk - Tue, 31 May 2005 09:45:20 -0700 (PDT)
      • David Carlisle - Tue, 31 May 2005 17:49:21 +0100 <=