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