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

RE: Counting number of characters of sibling text node

Subject: RE: Counting number of characters of sibling text node
From: "Andrew Welch" <awelch@xxxxxxxxxxxxxxx>
Date: Wed, 22 May 2002 14:06:55 +0100
sibling number trick

>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.

For this xml:

<?xml version="1.0"?>
<root>
  <node>
    xxx
    <br/>
    yyy
    <br/>
    zzzz
  </node>
</root>

This xsl should do the trick:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">

<xsl:template match="/">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="node">
  <xsl:variable name="theText">
    <xsl:apply-templates select="text()"/>
  </xsl:variable>
  <xsl:value-of
select="string-length(translate(normalize-space($theText),' ',''))"/>
</xsl:template>

</xsl:stylesheet>

Here I think its best to store all of the text() children of the node in
a variable.  The text nodes may contain whitespace as well, so to get
rid of that use normalize-space() and then do a translate() to remove
the single white spaces that are left.

cheers
andrew

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.350 / Virus Database: 196 - Release Date: 17/04/2002
 

 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.