This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Position or Count


Hi Kevin,

> The call to the 'state-lookup' key DOES have to occur in the
> document holding the ROWSET elements. So your suggestion for using
> substring() function seems most viable. However, I am not sure how
> to go about doing it. Once I have written out the comma it is a text
> format. Not sure how I would then use substring?

Wrap the xsl:for-each that iterates over the layer_params elements in
an xsl:variable:

  <xsl:variable name="positionList">
    <xsl:for-each select="//layer_params">
      ...
    </xsl:for-each>
  </xsl:variable>

then take the substring of that variable's value:

  substring($positionList, 1, string-length($positionList) - 1)

Cheers,

Jeni

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


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]