xsl-list
[Top] [All Lists]

Re: replace html tag

2005-04-13 03:44:10

    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
________________________________________________________________________

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



<Prev in Thread] Current Thread [Next in Thread>