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 12th, 2008, 10:02 PM
Registered User
 
Join Date: Mar 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Process list

I have a node with a list of repetitive items:

<list>
   <name>name1</name>
   <date>date1</date>
   <name>name2</name>
   <date>date2</date>
   ...
</list>

The objective is to transform in:

<list>
   <item>
      <name>name1</name>
      <date>date1</date>
   </item>
   <item>
      <name>name2</name>
      <date>date2</date>
   </item>
   ...
</list>

I can't find a condition to iterate throw the origin xml. Any help to get me in the right direction would be appreciated.

Cheers
 
Old March 13th, 2008, 04:06 AM
samjudson's Avatar
Friend of Wrox
 
Join Date: Aug 2007
Posts: 2,128
Thanks: 1
Thanked 189 Times in 188 Posts
Default

This is a grouping problem, solved in XSLT 2.0 by using the <xsl:for-each-group group-starting-with="name"> instruction.

In XSLT 1.0 you could use following-sibling::date[1] while looping through each name element.

/- Sam Judson : Wrox Technical Editor -/
 
Old March 13th, 2008, 04:50 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

<xsl:for-each select="name">
  <item>
    <xsl:copy-of select=".|following-sibling::date[1]"/>
  </item>
</xsl:for-each>

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old March 13th, 2008, 02:24 PM
Registered User
 
Join Date: Mar 2008
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank you for help and explanation.

Cheers





Similar Threads
Thread Thread Starter Forum Replies Last Post
process.startinfo opens new instance of process Anypond General .NET 0 August 28th, 2008 05:35 AM
fill dropdown list with items when parent list isaac_cm Pro PHP 1 July 10th, 2006 05:41 AM
List tablesname from database & list databasename ittorget MySQL 3 September 10th, 2005 03:06 AM
Process List ? huyremy Pro VB 6 6 October 25th, 2004 01:30 PM





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