Hi Damodaran,
Can't you try selec using
@id="1", "2" etc. in a loop. I don't remember the syntax, since I'm not in
touch with xml.
But this type of grouping is surely possible.
Sreeram.
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Kanthi
Damodaran
Sent: Friday, June 08, 2001 12:50 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Grouping ?
Hello everyone -
I am having a problem with what I believe is a grouping issue. My XML looks
something like this
<OuterTag>
<Books>
<Book id = "1">
<Title>XML</Title>
<Author>ABC</Author>
</Book>
<Book id ="2">
<Title>XSL</Title>
<Author>DEF</Author>
</Book>
:
:
</Books>
<Addresses>
<Address id = "1">
<Street>Washington Street</Street>
<Country>USA</Country>
</Address>
<Address id = "2">
<Street>Oxford Street</Street>
<Country>United Kingdom</Country>
</Address>
:
:
</Addresses>
<Publishers>
<Publisher id ="1">
<Name>MacMillan Inc</Name>
</Publisher>
<Publisher id ="2">
<Name>Publishers Inc</Name>
</Publisher>
:
:
</Publishers>
</OuterTag>
And the output I am looking for is something like this [if the id's match
for the childnodes then group it together]
First
Title : XML
Author : ABC
Address : Washington Street, USA
Publisher : MacMillan Inc
Second
Title : XSL
Author : DEF
Address : Oxford Street, United Kingdom
Publisher : Publishers Inc
and so on ....
Any idea will be appreciated.
Thanks
K
_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.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
|