[xsl] finding out distinct node/values

Subject: [xsl] finding out distinct node/values
From: Anil Kumar Veeramalli <anil.v@xxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 10 Feb 2010 22:04:25 +0530
Hi,

I am using XSL1.0 and I want to find out distinct records.

<table>
   <rows>
            <row>
                  <name>A</name>
                  </no>1</no
               </row>
             <row>
                  <name>A</name>
                  </no>2</no
               </row>
               <row>
                  <name>B</name>
                  </no>2</no
               </row>
          <row>
                  <name>C</name>
                  </no>1</no
               </row>
       <row>
                  <name>C</name>
                  </no>2</no
               </row>
   </rows>
</table>

By passing the attribute "name" as a parameter, I would like to find out the all distinct values of name Attribute . i.e A,B and C

Thanks,
Anil

Current Thread