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 March 15th, 2006, 07:42 AM
Authorized User
 
Join Date: Feb 2006
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default combine the value of XML node

Hi,
but I have some XML like this which cause a problem.

<details>
        <detail id="0" onInvoice="true" isCustomerRequest="false">
          <text>1G-Locator R6MQ0E</text>
          <text>Zürich - Boston</text>
          <text>13:00-15:20, ZRH-BOS, LX 52, W, HK1</text>
        </detail>
        <detail id="1" onInvoice="true" isCustomerRequest="false">
          <text>Basispreis</text>
          <amount> 001250.00</amount>
          <currency>CHF</currency>
          <participantNrs>
            <participantNr>1</participantNr>
          </participantNrs>
        </detail>
        <detail id="2" onInvoice="true" isCustomerRequest="false">
          <text>Annull.kosten p.P. nach Ticketing:</text>
          <text>CHF 350.--</text>
        </detail>
      </details>

for this kind of XML code I want to do like Follwing
for Eg:
  <detail id="0" onInvoice="true" isCustomerRequest="false">
          <text>1G-Locator R6MQ0E</text>
          <text>Zürich - Boston</text>
          <text>13:00-15:20, ZRH-BOS, LX 52, W, HK1</text>
        </detail>


Above detail tag content no amount tag so I want to form detail tag like this
  <detail id="0" onInvoice="true" isCustomerRequest="false">
          <text>1G-Locator R6MQ0E<br>Zürich - Boston<br>13:00-15:20,
          ZRH-BOS, LX 52, W, HK1</text>
          </detail>
and detail tag which contain amount tag is process as it is.

is there any way to do this in XSL?

Regards,






Similar Threads
Thread Thread Starter Forum Replies Last Post
how to append child node after an node in XML + C# vishnu108mishra XML 5 November 13th, 2007 05:30 AM
unique xml node value northwind XSLT 1 April 12th, 2007 03:26 AM
How to combine stuff from two XML-files? Lemminkäinen XSLT 4 June 15th, 2006 08:03 AM
combine the value of XML node pravind XSLT 3 March 15th, 2006 07:58 AM
merging a node from one XML to another pravind XSLT 3 February 21st, 2006 05:04 AM





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