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

AW: Counting number of characters of sibling text node

Subject: AW: Counting number of characters of sibling text node
From: "Fries, Markus, fiscus GmbH, Bonn" <M.Fries@xxxxxxxxxxx>
Date: Wed, 22 May 2002 14:52:52 +0200
counting number
Try        <xsl:value-of select="$pastTxtLen + string-length(.)" />
instead of <xsl:value-of select="string-length($pastTxtLen) +
string-length(.)" />

If it does not work there is yet another (whitespace) problem.


-----Ursprüngliche Nachricht-----
Von: Filipe Correia [mailto:filipe.correia@xxxxxxxxxxxxxxx]
Gesendet: Mittwoch, 22. Mai 2002 14:26
An: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Betreff:  Counting number of characters of sibling text node


What I want to do is to count the number os characters in a  text node and
all previous text nodes children of the current text node's parent.

           parent
              |
  ----------------------------
  |        |        |         |
text1 <br/>  text2  <br/>


  When having text1 has the current node my template would return the number
of characters of text1 but when having text2 has the current node my
template would return the sum of number of characters of text1 with number
of characters of text2.

  I've tried using the following template:

<xsl:template match="text()" mode="getStrLen">
   <xsl:variable name="pastTxtLen"><xsl:apply-templates
select="preceding-sibling::text()[1]" mode="getStrLen"/></xsl:variable>
   <xsl:value-of select="string-length($pastTxtLen) + string-length(.)" />
</xsl:template>

I get it's result by doing: 
<xsl:variable name="pastTxtLen"><xsl:apply-templates select="."
mode="getStrLen"/></xsl:variable>

Doing it this way I get the rong result.
For the example above, when I have text1 has the current node it works
fine(the number of characters of text1 only is returned) but when I have
text2 has the current node a rong result.

   Any suggestions?

      Filipe


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

 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.