Clipboard addon to remove text formatting

7

4

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.

Frank Schwieterman

Posted 2010-06-17T20:15:51.650

Reputation: 1 115

Answers

7

Puretext does everything you want - and only that.

Domchi

Posted 2010-06-17T20:15:51.650

Reputation: 2 557

great! And the program is only 83 KB – joro – 2017-01-17T13:26:20.203

3

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

DMA57361

Posted 2010-06-17T20:15:51.650

Reputation: 17 581

2

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

Phoshi

Posted 2010-06-17T20:15:51.650

Reputation: 22 001

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 – 2010-06-18T01:09:42.437

1

Try: Ctrl+Shift+V

That's a hotkey that works in many cases. (e.g. I just tried it in Chrome with GMail.)

ralfiii

Posted 2010-06-17T20:15:51.650

Reputation: 11

This is paste formatting in Office. – BanksySan – 2017-11-28T15:05:48.173