You didn't give us a clear idea of what the output should look like. For 
example, what XML structure is implied by "the content of <i> and <j> in a 
single row"? Do you want an XML element or simply an unstructured text output? 
The following is a solution to what I guessed your desired output to be. Please 
be specific on the output format if you need more help.

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

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

  <xsl:template match="a">
    <xsl:apply-templates />
  </xsl:template>
  
  <xsl:template match="c">
    <c>
      <xsl:value-of select=".">
      <xsl:value-of select="preceding-sibling::b" />
      <xsl:apply-templates />
    </c>
  </xsl:template>
  
  <xsl:template match="i">
    <xsl:value-of select=".">:<xsl:value-of select="following-sibling::j" />
  </xsl:template>
  
  <xsl:template match="b" />
  <xsl:template match="j" />

</xsl:stylesheet>
-- 
Charles Knell
[EMAIL PROTECTED] - email



-----Original Message-----
From:     <[EMAIL PROTECTED]>
Sent:     Tue, 14 Sep 2004 14:29:43 +0530
To:       <[EMAIL PROTECTED]>
Subject:  Please help in XSLT

Hi Everybody,

            Please help. 

            I have a XML file in that I have parent tags and two child
tag.

Example :

                        <a>

                                    <b>

                                    

                                    </b>

 

                                    <c>

                                                <i>   </i>

                                                <j>   </j>           

            

                                    

                                    </c>

                                                <i>   </i>

                                                <j>   </j>

                                    <c>

                                                <i>   </i>

                                                <j>   </j>

                                    </c>

                        </a>

 

I need XSLT solutions to:

            1) How I can implement, every repeat of <c> I have to
combine the content of <b>.

            2) How I can display the content of <i> and <j> in a single
row with ':' colon as delimiter.

 

Thanks in advance

 

Bye,

Bhaskar

 

 

            



DISCLAIMER:
This message contains privileged and confidential information and is intended 
only for the individual named.If you are not the intended recipient you should 
not disseminate,distribute,store,print, copy or deliver this message.Please 
notify the sender immediately by e-mail if you have received this e-mail by 
mistake and delete this e-mail from your system.E-mail transmission cannot be 
guaranteed to be secure or error-free as information could be 
intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain 
viruses.The sender therefore does not accept liability for any errors or 
omissions in the contents of this message which arise as a result of e-mail 
transmission. If verification is required please request a hard-copy version.


Hi Everybody,

            Please help.

            I have a XML file in that I have parent tags and two child tag.

Example :

                        <a>

                                    <b>

                                   

                                    </b>

 

                                    <c>

                                                <i>   </i>

                                                <j>   </j>          

           

                                   

                                    </c>

                                                <i>   </i>

                                                <j>   </j>

                                    <c>

                                                <i>   </i>

                                                <j>   </j>

                                    </c>

                        </a>

 

I need XSLT solutions to:

            1) How I can implement, every repeat of <c> I have to combine the content of <b>.

            2) How I can display the content of <i> and <j> in a single row with ‘:’ colon as delimiter.

 

Thanks in advance

 

Bye,

Bhaskar

 

 

           

DISCLAIMER:
This message contains privileged and confidential information and is intended only for the individual named.If you are not the intended recipient you should not disseminate,distribute,store,print, copy or deliver this message.Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system.E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted,corrupted,lost,destroyed,arrive late or incomplete or contain viruses.The sender therefore does not accept liability for any errors or omissions in the contents of this message which arise as a result of e-mail transmission. If verification is required please request a hard-copy version.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to