I was just wondering if anyone know of a Windows application that will remove formatting from any text in the clipboard? So if I copy something from word into another document, the content is pasted as the original text without formatting. I want this to work no matter what application I paste into.

link|improve this question

80% accept rate
feedback

3 Answers

I achieve this by pasting in to Notepad (or your text-only editor of choice) and re-copying.

Works when copying from anywhere to anywhere.

But, I imagine this isn't quite what you're looking for - but it works...

link|improve this answer
feedback

As with many small tasks, AutoHotkey is perfect for the job!

^#v::
   ClipboardTemp = %ClipBoardAll%
   ClipBoard = %ClipBoard%
   Send ^v
   sleep, 30
   ClipBoard = %ClipboardTemp%
Return

Would paste de-formatted text when you pressed control-win-v

link|improve this answer
One small caveat that may or may not apply to you: If your text contains Unicode characters, AutoHotkey will get a "downgraded" version of the characters when it reads the clipboard as text. – Bavi_H Jun 18 '10 at 1:09
feedback

Puretext does everything you want - and only that.

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.