Hi Charles,

        Thanks for your reply.

        Now I need some clarification so I am sending the format.

        XML content:

 

            <Curve>

                    <CurveLevelInfo>

                        <RecoveryRate>0.100</RecoveryRate>

                        <Liquidity>0</Liquidity>

                        <DefaultedDate>2004-07-22+04:00</DefaultedDate>

 
<LastUpdate>2004-07-22T00:00:00+04:00</LastUpdate>

                        <LastUpdateUser>whinbr</LastUpdateUser>

                        <Trader>FUKUDA</Trader>

                        <Status>ACTIVE</Status>

                        <Sector>CONSUMER FINANCE</Sector>

                        <Country>Japan</Country>

                        <Region>TOKYO</Region>

                        <CurveType>Single Name</CurveType>

                        <Book>TOKYO</Book>

                        <Source>Official</Source>

                    </CurveLevelInfo>

                    <SourcedPoint methodology="3">

                        <Tenor>3Y</Tenor>

                        <BidRate>0</BidRate>

                        <MidRate>101.000000000000</MidRate>

                        <OfferRate>0</OfferRate>

                    </SourcedPoint>

                    <SourcedPoint methodology="3">

                        <Tenor>2Y</Tenor>

                        <BidRate>0</BidRate>

                        <MidRate>89.000000000000</MidRate>

                        <OfferRate>0</OfferRate>

                    </SourcedPoint>

                    <SourcedPoint methodology="3">

                        <Tenor>6M</Tenor>

                        <BidRate>0</BidRate>

                        <MidRate>65.000000000000</MidRate>

                        <OfferRate>0</OfferRate>

                    </SourcedPoint>

                    <SourcedPoint methodology="3">

                        <Tenor>30Y</Tenor>

                        <BidRate>0</BidRate>

                        <MidRate>245.000000000000</MidRate>

                        <OfferRate>0</OfferRate>

                    </SourcedPoint>

                    <SourcedPoint methodology="3">

                        <Tenor>4Y</Tenor>

                        <BidRate>0</BidRate>

                        <MidRate>113.000000000000</MidRate>

                        <OfferRate>0</OfferRate>

                    </SourcedPoint>

     </curve>

 

Expected output is :

 

0.100:0:2004-07-22+04:00:2004-07-22T00:00:00+04:00:whinbr:FUKUDA:ACTIVE:
CONSUMER FINANCE:Japan:TOKYO:Single
Name:TOKYO:Official:3Y::0:101.000000000000:0

0.100:0:2004-07-22+04:00:2004-07-22T00:00:00+04:00:whinbr:FUKUDA:ACTIVE:
CONSUMER FINANCE:Japan:TOKYO:Single
Name:TOKYO:Official:2Y:0:89.000000000000:0

0.100:0:2004-07-22+04:00:2004-07-22T00:00:00+04:00:whinbr:FUKUDA:ACTIVE:
CONSUMER FINANCE:Japan:TOKYO:Single
Name:TOKYO:Official:6M:0:65.000000000000:0

0.100:0:2004-07-22+04:00:2004-07-22T00:00:00+04:00:whinbr:FUKUDA:ACTIVE:
CONSUMER FINANCE:Japan:TOKYO:Single
Name:TOKYO:Official:30Y:0:245.000000000000:0

0.100:0:2004-07-22+04:00:2004-07-22T00:00:00+04:00:whinbr:FUKUDA:ACTIVE:
CONSUMER FINANCE:Japan:TOKYO:Single
Name:TOKYO:Official:4Y:0:113.000000000000:0

 

Here every repeat of tag <SourcePoint> and have append the content of
tag <CurveLevelInfo>.


With Regards,
Bhaskar

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 14, 2004 5:36 PM
To: [EMAIL PROTECTED]
Subject: RE: Please help in XSLT

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.






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