472,133 Members | 1,042 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,133 software developers and data experts.

replacing &lt; with < using xslt

Hi all:

I have a source xml document with an element of type string. This
element contains something like the following:
<stringData>
&lt;Header&gt; &lt;Body&gt;
</stringData>

I would like to apply an XSLT and replace all occurances of &lt; with <
and &gt; with >.

I tried the following but without success:

<xsl:template match="stringData">
<xsl:variable name="lessThan" select='<'/>
<xsl:value-of select="translate(text()[1], '&lt;', $lessThan)"/>
</xsl:template>

I'd appreciate any help.

Thanks

May 19 '06 #1
6 23607
te**********@gmail.com wrote:
Hi all:

I have a source xml document with an element of type string. This
element contains something like the following:
<stringData>
&lt;Header&gt; &lt;Body&gt;
</stringData>

I would like to apply an XSLT and replace all occurances of &lt; with <
and &gt; with >.
you don't need to : as this is not markup but text, escaping < and >
with &lt; and &gt; is expected by parsers and applications

if you have to produce a text output instead of an XML output, just do
that :

<xsl:output method="text"/>
<xsl:template match="stringData">
<xsl:value-of select="text()"/>
</xsl:template>

the output will be :
<Header> <Body>

I tried the following but without success:

<xsl:template match="stringData">
<xsl:variable name="lessThan" select='<'/> illegal, use &lt;
<xsl:value-of select="translate(text()[1], '&lt;', $lessThan)"/>
</xsl:template>

I'd appreciate any help.

Thanks

--
Cordialement,

///
(. .)
--------ooO--(_)--Ooo--------
| Philippe Poulard |
-----------------------------
http://reflex.gforge.inria.fr/
Have the RefleX !
May 19 '06 #2
In article <11*********************@j55g2000cwa.googlegroups. com>,
<te**********@gmail.com> wrote:
I would like to apply an XSLT and replace all occurances of &lt; with <
and &gt; with >.


You seem to want to transform character data into markup. XSLT is not
well suited to this, since it expects to be working with existing
document structure, and you are giving it (in effect) strings.

The simplest solution, if you can get it to work, is just to copy
the strings with output escaping disabled.

<xsl:value-of select="text()" disable-output-escaping="yes"/>

But you may have problems if the strings contain ampersands, since
those will not be escaped either.

The other approach is essentially to parse the text and create the
corresponding elements.

-- Richard
May 19 '06 #3
Thanks for reply. The source document and the target document are both
SOAP messages. The <stringData> element is read out of the source's
SOAP Body and has to be placed in the target's SOAP Body. The &lt; and
&gt; have to be converted before being added to the target SOAP body so
that the body now contains an new xml element.

I tried the suggestion, yet the SOAP output of the XSLT retains the
&lt; and &gt; occurances.

Thanks

May 19 '06 #4
Richard,

Thanks for the suggestion. Using <xsl:value-of select="text()"
disable-output-escaping="yes"/> did the job.

Appreciate it!

May 19 '06 #5
te**********@gmail.com wrote:
Thanks for reply. The source document and the target document are both
SOAP messages. The <stringData> element is read out of the source's
SOAP Body and has to be placed in the target's SOAP Body. The &lt; and
&gt; have to be converted before being added to the target SOAP body so
that the body now contains an new xml element.
as Richard said, you can try :
<xsl:value-of select="text()" disable-output-escaping="yes"/>
but the output will be broken if the tags are not well-balanced, which
is the case in your example

you should consider an alternative tool such as RefleX (
http://reflex.gforge.inria.fr/ ) that can fix invalid markup thanks to
an HTML parser ; the process would be :

<xcl:parse name="input" source="file:///path/to/input.xml"/>
<xcl:parse-html name="data" text-source="{ string( $input/stringData ) }"/>
<xcl:document name="result">
<stringData>
{ $data }
</stringData>
</xcl:document>
<xcl:transform source="{ $result }" output="file:///path/to/result"/>

there are also means to update the $input, by replacing the old content
of <stringData> with the new one, made of markup

I tried the suggestion, yet the SOAP output of the XSLT retains the
&lt; and &gt; occurances.

Thanks


--
Cordialement,

///
(. .)
--------ooO--(_)--Ooo--------
| Philippe Poulard |
-----------------------------
http://reflex.gforge.inria.fr/
Have the RefleX !
May 19 '06 #6
te**********@gmail.com wrote:
Hi all:

I have a source xml document with an element of type string. This
element contains something like the following:
<stringData>
&lt;Header&gt; &lt;Body&gt;
</stringData>


See http://xml.silmaril.ie/authors/html/

///Peter
May 19 '06 #7

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

4 posts views Thread by matatu | last post: by
2 posts views Thread by Francesco Moi | last post: by
2 posts views Thread by PatC | last post: by
3 posts views Thread by webmasterATflymagnetic.com | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.