xsl-list
[Top] [All Lists]

Re: Test for preceding-sibling and text

2004-11-12 05:07:37
  Following the discussion in the "characters in xsl" thread, I tried changing 
  "*" with "node()" in the XPath, that is:
  "not(preceding-sibling::*[1][self::A])" became
  "not(preceding-sibling::node()[1][self::A])"

  This seems to work. Will there be any reason that this should not?

well it depends on your meaning of "work".
they are both legal Xpath expressions, so neither will cause an error,
but they test different things, it's hard to say whether either is the
test you want (without going back down the thread to see if there was
more info there)

given

zzz <A/> zzz <B/> zzz <A/><C/>

the first expression is false in <B/> and false on <C/>
the second expression is true on <B/>  and false on <C/>

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
________________________________________________________________________

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