Re: [xsl] Character encoding/representation from ISO-8859-1 to UTF-8

Subject: Re: [xsl] Character encoding/representation from ISO-8859-1 to UTF-8
From: "Eliot Kimber ekimber@xxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Tue, 11 Oct 2016 19:36:55 -0000
The characters are not just the ASCII bytes.

I think you will need to match on the characters in question and replace
them with the desired character, e.g.:

<xsl:template match="text()[contains(., 'C"b,b"')]">
<xsl:value-of select="replace(., 'C"b,b"', 'b')"/>
<xsl:template/>

And then use a more complete identity transform that handles the text nodes:

Cheers,

Eliot


--
Eliot Kimber
http://contrext.com



From:  "Bridger Dyson-Smith bdysonsmith@xxxxxxxxx"
<xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Reply-To:  <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Date:  Tuesday, October 11, 2016 at 2:59 PM
To:  <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Subject:  [xsl] Character encoding/representation from ISO-8859-1 to UTF-8

<?xml version="1.0" encoding="iso-8859-1"?>
<documents>
<document>The reality of the effect of natural ventilation in a residential
attic cavity has been the topic of many debates and scholarly reports since
the 1930C"b,b"s.</document>
</documents>

Current Thread