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, 06:14 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,
I have follwing XML code.
<details>-
<detail id="1" onInvoice="true" isCustomerRequest="false">
  <text>nderungen der Transportzeiten bleiben</text>
  <text>ausdrcklich vorbehalten!</text>
  </detail>
  </details>

I want to convert above XML in follwing format
<details>-
<detail id="1" onInvoice="true" isCustomerRequest="false">
  <text>nderungen der Transportzeiten bleiben&lt;BR&gt;ausdrcklich vorbehalten!</text>
   </detail>
  </details>

want to combine all text tag in to one tag sepratted by <BR>


Regards,
Pravin.

 
Old March 15th, 2006, 06:30 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

You want something like

<xsl:template match="detail">
  <text>
    <xsl:for-each select="text">
      <xsl:value-of select="."/>
      <xsl:if test="position()!=last()"><br/></xsl:if>
    </
  </
</

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old March 15th, 2006, 07:40 AM
Authorized User
 
Join Date: Feb 2006
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Hi,
but I have some XML like this

<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,





Quote:
quote:Originally posted by mhkay
 You want something like

<xsl:template match="detail">
  <text>
    <xsl:for-each select="text">
      <xsl:value-of select="."/>
      <xsl:if test="position()!=last()"><br/></xsl:if>
    </
  </
</

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old March 15th, 2006, 07:58 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Yes, of course you can do this. If you only want to apply the above rule to detail elements that have no amount child element, change the match pattern to

match="detail[not(amount)]"

I'd suggest you find a good book on XSLT and read through it - this forum is there for when you get stuck, not as your first source of information.

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference





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 0 March 15th, 2006 07:42 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.