|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Selecting First Letter
Jeffrey,
XSLT 1.0 is not really a great string-processing language, which is what you need here, but its string handling is good enough to manage this ... you need the functions substring($string, $start, $length) and maybe substring-after($string, $substring) So: <xsl:template match="text()"> <xsl:variable name="initial" select="substring(.,1,1)"> <b><xsl:value-of select="$initial"/></b> <xsl:value-of select="substring-after(.,$initial)"/> </xsl:template> should do it. (The rest would be an identity transform.) Cheers, Wendell At 01:33 PM 9/30/2003, you wrote: I would like to be able to select the first letter of the first text node within a hierarchy, e.g., the "S" here: ====================================================================== Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx Mulberry Technologies, Inc. http://www.mulberrytech.com 17 West Jefferson Street Direct Phone: 301/315-9635 Suite 207 Phone: 301/315-9631 Rockville, MD 20850 Fax: 301/315-8285 ---------------------------------------------------------------------- Mulberry Technologies: A Consultancy Specializing in SGML and XML ====================================================================== XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








