vote up 9 vote down star
2

I used to often find myself coping a piece of code from a website/Word document etc only to discover that when doing Paste I would end up with the desired code plus some extra html tags/text, basically extra formatting information.

To get rid of that extra ballast I would paste the text to the Notepad and then copy it again and then paste to the desired destination.

Pretty recently I discovered a simple and free tool for Windows called PureText that allows me to cut the Notepad step. It basically adds an extra keyboard shortcut e.g WinKey + V that will do the Paste action without formatting; just pure text. I find it very handy.

I was wondering what approach would you use yourselves? Are they any better/easier to use tools around?

flag

1  
I love PureText - it's what I use and I had no problem getting used to it. – Jason Bunting Sep 23 '08 at 17:32

13 Answers

vote up 7 vote down

From websites, using Firefox, I use the CopyPlainText extension.

link|flag
Very handy extension - if it could be bowled together with AutoCopy (and made to work in FF3!) it'd be great. – ConroyP Sep 23 '08 at 17:28
Thank you cori! I was always aggrivated by this, the extension works great! – Keith Mar 25 at 22:03
Yeah, it's a pretty useful thing ;) – cori Mar 26 at 13:12
vote up 5 vote down

Just for reference, under Mac OS X, you can SHIFT-ALT-CMD + V (to paste) without formatting or with the "current" format.

link|flag
quad-bucky-cokebottle... – Johan Sep 25 '08 at 11:44
vote up 3 vote down

If you're pasting into Word you can use the Paste Special command.

link|flag
vote up 2 vote down

I'm a big fan of Autohotkey. I defined a 'paste plain text' macro that works in any application. It runs when I press Ctrl+Shift+V. The nice thing about Autohotkey: you can code things to work they way you want them to work.

^+v::
    ; Convert any copied files, HTML, or other formatted text to plain text
    Clipboard = %Clipboard%

    ; Paste by pressing Ctrl+V
    SendInput, ^v
return
link|flag
vote up 1 vote down

Nice find with your PureText. I had build, before I change keyboard, a key that was running a macro that was copying-pasting-copying in notepad for this task! I'll give a try to your software since I do not have any macro key now :(

link|flag
vote up 1 vote down

I wrote an unpublished java app to monitor the clipboard, replacing items that offered text along with other richer formats, with items only offering the plain text format.

link|flag
vote up 1 vote down

I have Far.exe as the first item in the start menu.

Richtext in the clipboard ->

ctrl-escape,arrdown,enter,shift-f4,$,enter
shift-insert,ctrl-insert,alt-backspace,
f10,enter

-> plaintext in the clipboard

Pros: no mouse, just blind typing, ends exactly where i was before

Cons: ANSI encoding - international symbols are lost

Luckily, I do not have to do that too often :)

link|flag
vote up 1 vote down check

Just to summarise the available options:

Tools

Browser's Plugins

Other

  • under Mac OS X, you can SHIFT-ALT-CMD + V (to paste) without formatting or with the "current" format (by Martin)
  • Paste to Notepad, and then copy from Notepad and paste again

Please feel free to edit/add new items

link|flag
vote up 0 vote down

Look for a little clipboard icon that pops up at the end of the material you pasted. Click on this and choose "keep text only".

link|flag
vote up 0 vote down

I use OpenOffice.org and that offers a paste special option, where you can omit the formatting altogether. If you are not bound to MS Word, it's IMO worth a try and it's free :-)

link|flag
If only MS Word has such a feature :) – hometoast Sep 23 '08 at 17:23
MS Word has it's feature called "Special Paste" well in french version is "Collage spécial" – Daok Sep 23 '08 at 17:25
@hometoast if only MS Word was free... – André Sep 24 '08 at 21:41
vote up 0 vote down

Whenever these plugins and options aren't available I just use my good ol friend notepad. Paste content into notepad where it won't accept the extra formatting and then copy it right back out. Sort of hacky but oh well. It works!

link|flag
vote up 0 vote down

I usually work with Notepad2, all the text I copy from the web are pasted there and then reused, that allows me to clean it (from format and make modifications).

You can download Notepad2 here

link|flag
vote up 0 vote down

If you are using MS Word then try ALT+E, S, U, Enter (Uses the Paste Special)

link|flag

Your Answer

Get an OpenID
or

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