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: How to get the name of the first child element?


> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]