RE: [xsl] How to substring from XML content ?

Subject: RE: [xsl] How to substring from XML content ?
From: Oliver Becker <obecker@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 18 Jun 2001 14:00:41 +0200 (MET DST)
> <xsl:value-of select="substring(p, 0,1)"/>
> should give you the "O"
> 
> <xsl:value-of select="substring(p, 1)"/>
> should give you "verview"

No, the first character is at position 1.
substring(p, 1, 1) gives "O" and
substring(p, 2) gives "verview"
(only if string(p)="Overview" of course)

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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


Current Thread