Re: [xsl] Processing tag text either side of nested tags

Subject: Re: [xsl] Processing tag text either side of nested tags
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 11 Apr 2006 15:58:57 +0100
>  have some XML with text contained either side of a nested tag. I

beware using the T word on this list:-) You can not nest tags in XML
(the content of the tag <outer> is the 5 letters "outer" not the stuff
between there and </outer>) XSL has no access to the tags in your source file.


> I modify the text..

You just want to have a template matching text nodes not element nodes
so:

remove this template   <xsl:template match="outer"> and  then have

    <xsl:template match="outer/text()">
 <xsl:value-of select="translate(.
'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
    </xsl:template>


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread