Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you deal with the "special" characters that MS Word adds?

Tags:

html

ms-word

I'm wondering how you clean the special characters that MS Word as, such as m- and n-dashes and curly quotes?

I often find myself copying content from clients from Word and pasting into a static HTML page, but the content ends up with weird characters because the special characters are not converted to their correct ACSII codes and therefore show up as garbled text. (For these basic websites, I'm using Dreamweaver.)

I have seen a lot of similar problems when clients copy content from Word into text only fields (mostly textareas). When I put this into a PDF (through PHP) or it shows up on the page it too has garbled text.

How do you deal with this? Is there a cleaning service or program you use?

like image 207
Darryl Hein Avatar asked May 06 '09 22:05

Darryl Hein


2 Answers

With regards to clients posting copy/pasted text from Word in textareas:

The most reliable way to ensure that the client sends you text in any particular encoding (thus hopefully doing any conversion from CP-1252 [or whatever Word uses] for you), is to add the accept-charset="..." attribute to all your <form>s. E.g.:

<form ... accept-charset="UTF-8">
   ...
</form>

Most browsers will obey that and make sure any "Word-specific" characters are converted to the appropriate character set before it gets to your website.

Once invalid text gets to your website, there's very little you can do to fix it reliably, so it's best to simply check all input for being valid in whatever character set you use, and discard any requests that have invalid text. This is necessary even with accept-charset, because undoubtedly there are some clients out there that will ignore it.

like image 75
chazomaticus Avatar answered Nov 10 '22 00:11

chazomaticus


You can use preg_replace function call to remove all special characters of word or others from your string

 preg_replace('/[^\x00-\x7F]+/', '', $str);
like image 20
Rutunj sheladiya Avatar answered Nov 09 '22 23:11

Rutunj sheladiya