Re: [xsl] increment value

Subject: Re: [xsl] increment value
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Thu, 22 Jan 2004 13:07:47 -0500
At 2004-01-22 17:16 +0000, Ricardo Saraiva wrote:
I want to increment a value to concat to a string.

You cannot increment variables ... they are unchanged once bound.


For example:

        <a>
              <b>1</b>
        <b>2</b>
      </a>

      <a>
              <b>3</b>
        <b>4</b>
      </a>

The output would be:

        <b id="b1"/>
        <b id="b2"/>
        <b id="b3"/>
        <b id="b4"/>

Dynamically calculate what you need at each step:


<b id="b{count(preceding::b) + 1}"/>

But, if you just want unique values and you don't care what the values are:

<b id="{generate-id()}"/>

I hope this helps.

.................. Ken


-- Public courses: sign up for one or both soon to reserve your seat! Each week: Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO Washington, DC: 2004-03-15 San Francisco, CA: 2004-03-22 Hong Kong, China: 2004-05-17 Bremen, Germany: 2004-05-24 World-wide on-site corporate, government & user group XML training

G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc


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



Current Thread