Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 18th, 2003, 05:33 AM
Registered User
 
Join Date: Aug 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to get Node names?

Hi,
    I got a problem in getting node names. here is the example XML.

       <DataKey>
           <accountNo>12234</accountNo>
           <Amount>+12344.99</Amount>
           <Date>03/23/2003</Date>
       <DataKey>

I want the output as followes.

       <DataKey>
           <Data Name"accountNo">12234</Data>
           <Data Name"Amount">+12344.99</Data>
           <Data Name"Date">03/23/2003</Data>
       <DataKey>

Could any one please send me xsl format for this??
Thanks in advance.

Regards,
Srihari

Srihari
 
Old August 18th, 2003, 05:52 AM
Authorized User
 
Join Date: Aug 2003
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Quote:
quote:Originally posted by g_srihari9
 Hi,
    I got a problem in getting node names. here is the example XML.

     <DataKey>
         <accountNo>12234</accountNo>
         <Amount>+12344.99</Amount>
         <Date>03/23/2003</Date>
     <DataKey>

I want the output as followes.

     <DataKey>
         <Data Name"accountNo">12234</Data>
         <Data Name"Amount">+12344.99</Data>
         <Data Name"Date">03/23/2003</Data>
     <DataKey>

Could any one please send me xsl format for this??
Thanks in advance.

Regards,
Srihari

Srihari
You wanna try it with this?

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output indent="yes" method="xml"/>

    <xsl:template match="/" >
        <xsl:apply-templates />
    </xsl:template>

    <xsl:template match="DataKey" >
        <DataKey>
            <xsl:apply-templates />
        </DataKey>
    </xsl:template>

    <xsl:template match="*" >
        <xsl:element name="Data" >
            <xsl:attribute name="Name" >
                <xsl:value-of select="name()" />
            </xsl:attribute>
            <xsl:value-of select="." />
        </xsl:element>
    </xsl:template>

</xsl:stylesheet>

Regards





Similar Threads
Thread Thread Starter Forum Replies Last Post
The reference node is not a child of this node.XSL XMLUser XSLT 2 February 25th, 2008 05:22 AM
how to append child node after an node in XML + C# vishnu108mishra XML 5 November 13th, 2007 05:30 AM
Missing Node (Node data) pashworth XSLT 3 January 29th, 2007 12:39 PM
Copying Source Node attributes to output node pvsat XSLT 2 November 3rd, 2005 09:46 AM
document node order vs sort node order. ladyslipper98201 XSLT 2 June 5th, 2003 11:06 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.