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: Re: your mail



> Is there a  way of doing this without already knowing the string in the
> element?

> i.e.
<xsl:value of select="count(//field[@column='3' and . = field[@column='3'
/>

yes but the current node inside the [] is why the . works, so the field
would refer to a field child of a field, probably you want to know the
value of a later field something like

.=following::field[@column..

on the other hand hand you might want to use keys for this ('cause it's
simpler and faster)

<xs:key name="x" match="field[@column=3]" use="."/>

so now <xsl:value of select="count(key('x','A'))"/>
tells you how many A's there are.

<xsl:for-each select="//field[@column=3][count(.|key('x',.)[1])=1]">
There are <xsl:value of select="count(key('x',.))"/> fields in column3
  with value <xsl:value-of select="."/>
</xsl:for-each>

will loop through all the distinct examples.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]