[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
=?iso-8859-1?q?Re:=20[xsl]=20isn=C2=B4t=20this=20expression=20right=20pls?= =?iso-8859-1?q?=20help?=
Subject: Re: [xsl] isn´t this expression right pls help
From: Florent Georges <darkman_spam@xxxxxxxx>
Date: Wed, 27 Jun 2007 12:28:28 +0200 (CEST)
|
Andreas Peter wrote:
Hi
> <xsl:variable name="count_p_s" select="string-length(//section/p)"/>
> My problem is that I just get the value of the first <p>-element
> and not an addition of the rest.
If you are using XSLT 1.0 that's the way it is supposed to work. To
get the total of all p, use a recursive template instead:
<xsl:template match="/">
<xsl:apply-templates select="<path to the *first* p>">
</xsl:template>
<xsl:template match="p" mode="count-chars">
<xsl:param name="count" select="0"/>
<xsl:apply-templates select="<path to the next p>">
<xsl:with-param name="count" select="
$count + string-length(.)"/>
</xsl:apply-templates>
</xsl:template>
Regards,
--drkm
_____________________________________________________________________________
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail
|