RE: [xsl] How to get the name of the first child element?

Subject: RE: [xsl] How to get the name of the first child element?
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Wed, 25 Jul 2001 16:26:11 +0100
> Given:
> 
> <DOCUMENT context="783926097">
>   <TABLE id="R997"/>
> </DOCUMENT>
> 
> I want to convert the above into:
> 
> <DOCUMENT context="783926097" schema="TABLE" 
> name="R997"/>
> 
> The logic is: Get the first child element's name (TABLE)  and 
> store it in
> the "schema" attribute.

<DOCUMENT context="{@context}" schema="{name(*[1])}" name="{*[1]/@id}"/>

Mike Kay
Software AG
> 

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


Current Thread