[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Obtaining a list of unique values

Subject: Re: Obtaining a list of unique values
From: "Vasu Chakkera" <vasucv@xxxxxxxxxxx>
Date: Thu, 8 Jan 2004 22:03:15 -0800
xsl selecting unique values
you can add the condition as a predicate in the forloop and get rid of the
if condition inside the for loop. this will avoid looping through the nodes
that you dont want as opposed to getting in and checking for the condition..
like
<xsl:for-each select="Item/Field[generate-id(Value) =  generate-id(key('x',
Value)[1])]">
just a cursory glance at it....

vasu
----- Original Message ----- 
From: "Mukul Gandhi" <mukulgandhi2003@xxxxxxxxxxx>
To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Thursday, January 08, 2004 12:54 PM
Subject: Re:  Obtaining a list of unique values


> Hi Sasa,
>   Please try the XSL --
>
> <?xml version="1.0" encoding="UTF-8"?>
> <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
>
> <xsl:output method="xml" version="1.0"
> encoding="UTF-8" indent="yes"/>
> <xsl:key name="x" match="Value" use="." />
> <xsl:template match="/root">
>    <xsl:for-each select="Item/Field">
>      <xsl:if test="generate-id(Value) =
> generate-id(key('x', Value)[1])">
>          <xsl:value-of select="Value" />
>      </xsl:if>
>    </xsl:for-each>
> </xsl:template>
> </xsl:stylesheet>
>
> The XSL above, uses Muenchian method for Grouping.
>
> Regards,
> Mukul
>
>  --- Sasa Cekrlija <sasa.cekrlija@xxxxxxx> wrote: >
> Given an XML file that contains a list of Items each
> > having an attribute
> > Colour with its value,
> > is it possible to obtain a list of all unique
> > colours of Items.
> >
> > For example if XML looks something like this:
> >
> > <Item name="item1">
> >     <Field name="Colour">
> >         <Value>Red</Value>
> >     </Field>
> > </Item>
> > <Item name="item2">
> >     <Field name="Colour">
> >         <Value>Blue</Value>
> >     </Field>
> > </Item>
> > <Item name="item3">
> >     <Field name="Colour">
> >         <Value>Red</Value>
> >     </Field>
> > </Item>
> >
> > Then I would like to obtain a list containg exactly
> > two entries:  Red, Blue
> >
> > Thanks!
> > Sasa C.
> >
> >
> >  XSL-List info and archive:
> > http://www.mulberrytech.com/xsl/xsl-list
> >
>
> ________________________________________________________________________
> Yahoo! India Mobile: Download the latest polyphonic ringtones.
> Go to http://in.mobile.yahoo.com
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
>

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.