xsl-list
[Top] [All Lists]

RE: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com

2004-06-07 01:05:43
It's good to have such xslt to implement my function.
If I want to get the position of first element whoes name is 
not A and B 
but anything else ,how can I do ?

Replace (C|D) by *[not(self::A or self::B)]

Michael Kay


Thanks in advance.
Chen Yi


From: "Michael Kay" <mhk(_at_)mhk(_dot_)me(_dot_)uk>
Reply-To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Subject: RE: [xsl] xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com 
Date: Sun, 6 Jun 2004 13:18:38 +0100

count((C|D)[1]/preceding-sibling::*) + 1

alternatively:

<xsl:for-each select="(C|D)[1]">
  <xsl:number count="*"/>
</xsl:for-each>

Michael Kay

-----Original Message-----
From: Chen Yi [mailto:chen_yi36(_at_)hotmail(_dot_)com]
Sent: 06 June 2004 08:09
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com

ALL,

 For example,

<element>
 <A/>
 <B/>
 <A/>
 <C/>
 <C/>
 <D/>
</element>

I want to get the position first element whoes name is not A
and B, but C &
D. So it's 4 for this tree segment.
How can I write the xslt to figure out this ?

Thanks,
Chen Yi

_________________________________________________________________
鍏嶈垂涓嬭浇 MSN Explorer:   http://explorer.msn.com/lccn/



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


_________________________________________________________________
与联机的朋友进行交流,请使用 MSN Messenger:  http://messenger.msn.com/cn  


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






<Prev in Thread] Current Thread [Next in Thread>