Re: [xsl] replace html tag

Subject: Re: [xsl] replace html tag
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 13 Apr 2005 11:44:10 +0100
>     I am having some characters like {i},{/i} in the xml file. whenever i
> find the word like {i} in xml i shd replace the "{" with "<" 

XSLT is pretty bad at this kind of transformation, probably if you
really have to start from input in that form I would use the deprecated
disable-output-escaping feature (if your XSLT system supports it, it is
an optional feature)

Assuming you have d-o-e you can use

<xsl:value-of disable-output-escaping="yes"
select="transform('{}','&lt;&gt;',.)"/>

but any use of d-o-e is usually a sign that something is wrong with the
design, somewhere.

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