[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: how to add a cell in a for-each iteration?

Subject: Re: how to add a cell in a for-each iteration?
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Tue, 30 Jul 2002 12:51:59 +0100
website add a cell
Hi Thomas,

> I've just started to build a website using Cocoon engine, and use
> XML/XSLT -> HTML tranforms. I've read a lot on XSL formatting, and
> everything goes clear, except for one problem. I'd like to add eg.:
> " | " in between an iteration.
>
> Eg.: <list>
>         <item>menu 1</item>
>         <item>menu 2</item>
>         <item>menu 3</item>
>       </list>
>
> and in a XSLT template:
>     <xsl:for-each select="list/item">
>         <xsl:value-of select = "."/>
>     </xsl:for-each>
>
> would list them.
>
> So what I'd like to achieve is to insert eg.: " | " string in between my
> <item>s to perform: "menu 1 | menu 2 | menu 3" string.

The secret is to use the position() function to test whether the
particular item you're looking at is the last in the list or not. If
it isn't, then you want to add the " | "; if it is, you don't. So use:

  <xsl:for-each select="list/item">
    <xsl:value-of select="." />
    <xsl:if test="position() != last()"> | </xsl:if>
  </xsl:for-each>

---

In XSLT 2.0, use my personal favourite cute feature:

  <xsl:value-of select="list/item" separator=" | " />
  
Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.