Connecting Tech Pros Worldwide Help | Site Map

replacing &lt; with < using xslt

tentstitcher@gmail.com
Guest
 
Posts: n/a
#1: May 19 '06
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

Philippe Poulard
Guest
 
Posts: n/a
#2: May 19 '06

re: replacing &lt; with < using xslt


tentstitcher@gmail.com wrote:[color=blue]
> 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 >.[/color]

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>
[color=blue]
>
> I tried the following but without success:
>
> <xsl:template match="stringData">
> <xsl:variable name="lessThan" select='<'/>[/color]
illegal, use &lt;
[color=blue]
> <xsl:value-of select="translate(text()[1], '&lt;', $lessThan)"/>
> </xsl:template>
>
> I'd appreciate any help.
>
> Thanks
>[/color]


--
Cordialement,

///
(. .)
--------ooO--(_)--Ooo--------
| Philippe Poulard |
-----------------------------
http://reflex.gforge.inria.fr/
Have the RefleX !
Richard Tobin
Guest
 
Posts: n/a
#3: May 19 '06

re: replacing &lt; with < using xslt


In article <1148053748.286700.94240@j55g2000cwa.googlegroups. com>,
<tentstitcher@gmail.com> wrote:
[color=blue]
>I would like to apply an XSLT and replace all occurances of &lt; with <
>and &gt; with >.[/color]

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
tentstitcher@gmail.com
Guest
 
Posts: n/a
#4: May 19 '06

re: replacing &lt; with < using xslt


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

tentstitcher@gmail.com
Guest
 
Posts: n/a
#5: May 19 '06

re: replacing &lt; with < using xslt


Richard,

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

Appreciate it!

Philippe Poulard
Guest
 
Posts: n/a
#6: May 19 '06

re: replacing &lt; with < using xslt


tentstitcher@gmail.com wrote:[color=blue]
> 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.[/color]

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
[color=blue]
>
> I tried the suggestion, yet the SOAP output of the XSLT retains the
> &lt; and &gt; occurances.
>
> Thanks
>[/color]

--
Cordialement,

///
(. .)
--------ooO--(_)--Ooo--------
| Philippe Poulard |
-----------------------------
http://reflex.gforge.inria.fr/
Have the RefleX !
Peter Flynn
Guest
 
Posts: n/a
#7: May 19 '06

re: replacing &lt; with < using xslt


tentstitcher@gmail.com wrote:[color=blue]
> 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>[/color]

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

///Peter
Closed Thread


Similar .NET Framework bytes