xsl-list
[Top] [All Lists]

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

2006-04-11 08:00:31

 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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--