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]
Other format: [Raw text]

efficiency


Is there a more efficient way of doing this:

<xsl:if test="count(Memos/Memo) &gt; 1">

<xsl:for-each select="Memos/Memo">

<xsl:if test="position() &gt; 1"><xsl:text>88,</xsl:text><xsl:value-of
select="."/></xsl:if>

</xsl:for-each>

</xsl:if>

It's effective, but I would think I could do this in a predicate for the
select in the for-each.  Thanks. :)

--

David B. Bitton
david@codenoevil.com
www.codenoevil.com

Code Made Fresh DailyT


 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]