vote up 2 vote down star

I want to copy and paste text from a Office 2007 document (docx) into a textarea. On Window, using Firefox 3, there is additional jiberish that gets put into the field:

...Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Normal 
0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 Normal 0 false 
false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 <!--[if gte mso 9]>...

Seems to be the style information and conditional comments from the newer document structure. Any ideas on how to parse this out, or prevent this from happening? Possibilities are Javascript on the front side, or Java on the back side.

flag

3 Answers

vote up 0 vote down

I find the easiest way to eliminate this random jibberish is to copy the text you want, paste it into notepad or a similar plaintext editor, copy it from notepad, then paste it into the field.

Also, running it through a script or application that strips out the "smart" quotes and em/en dashes isn't a bad idea either.

link|flag
This is not what the question is. You can't expect the user of the web app to do the copy-pasting through Notepad. – Alex Sep 26 '08 at 18:07
vote up 0 vote down

There are third party tools that will strip out the erraneous 'Microsoft creep' stuff. You can even register some on the server and use them in your own code ('clean the crap' button anyone?)

link|flag
vote up 1 vote down

Similar to Lincoln's idea, you can use PureText to automate the process. Basically, you press its hotkey instead of Ctrl+V (I have mine set to Win+V), and it pastes the plain text version of whatever is on your clipboard. I'm not sure if that will remove the extra data that Office has added, but it's worth a try.

link|flag

Your Answer

Get an OpenID
or

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