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