I have encountered some odd characters that do not display properly in Internet Explorer, such as these: “, –, and ’. I think they're carried over from copy-and-paste Word content.

I am using XSLT to build the page content and it would be great to detect these characters in the XSLT and replace them with valid HTML codes. I already do string replacement in the style sheet, but I'm not sure how detect these encoded characters or whether it's possible.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

What about simply changing the encoding for the Stylesheet as well as its output to UTF-8? The characters you mention are , and . Certainly not invalid or so, given the correct encoding (the characters are at least perfectly valid in Codepage 1252).

link|improve this answer
feedback

Using a good XML editor such as XMLSpy should highlight any errors in formatting your XSLT by validating at development time.

link|improve this answer
feedback

Jeni Tennison's Multiple string replacements may be a good starting point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.