xsl-list
[Top] [All Lists]

Re: [xsl] Unicode and <xsl:character-map/>

2007-08-29 10:38:32
On 8/29/07, Steve Ylvisaker <sylvisaker(_at_)chyconsultants(_dot_)com> wrote:
I am working with Saxon8.

I have a Unicode source XML file that contains the code points °C (U+00B0 and 
U+0043). When I encounter this string pattern I would like to substitute the 
Unicode character for ℃ (U+2103). I have implemented the following code, 
which compiles fine but has no impact on the data. Is there something I am 
missing?

<xsl:output method="xml" omit-xml-declaration="no" encoding="utf-8" 
indent="no" use-character-maps="degree"/>

<xsl:character-map name="degree">
        <xsl:output-character character="&#x2103;" string="&#x00B0;#x0043;"/> 
</xsl:character-map>

Please help me out with this concept.

'tis vice versa - character maps replace single characters with a
string of characters: http://www.w3.org/TR/xslt20/#character-maps

You need replace() eg:

select="replace(., '&#xB0;&#x43;' ,'&#x2103;')"

cheers
andrew
-- 
http://andrewjwelch.com

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