Solution 1:

Unfortunately, no. And I believe this is by design.

The issue is that the Windows clipboard does not have to store the data. It is effectively a clearing house where any application can list the data that was just copied (or cut) and offer it up to any application (including itself) to be pasted. The clipboard contains a list of formats in which the data is available, and if the application chooses to do so, the data itself in some of those formats.

The application that processes a Paste operation then has the option to choose the data format that best suits it. Some applications (e.g. Notepad) will only accept one particular format (such as plain text) and simply do nothing if that format is not available. Others pick a preferred format by default but provide a UI for choosing among alternatives that can be understood by that application.

In principle a program could be written that monitors the clipboard for new content and flattens any non-text content to just plain text. There is an event available to notify such a monitor of new content on the clipboard. However, I suspect that implementing such a thing would break a fair number of programs, and possibly in surprising ways.

The simple workaround in stock XP is to use Notepad to flatten the data when needed, or to use one of the many tools that improve the clipboard by implementing a stack, providing a view of its content, and so forth.

If you want to try building a tool yourself, might benefit from this question over at SO, and its related questions....

Solution 2:

This is a pretty decent compromise: PureText.

PureText screenshot

This may not be a direct answer to what you asked, but this may be of use to someone else with a more general version of your question.

Solution 3:

There is not way to do this by default, but with a bit of hackery, we can work around that.

You will need:

  • PlainTextClipboard
  • AutoIT Script (you can use AutoHotKey, I just don't know that scripting language)

Create an AutoIt Script with the following code:

$ptcPath = "C:\Program Files (x86)\Plain Text Clipboard\PlainTextClipboard.exe"
HotKeySet("^v", "PastePlainText")

While True ;Keep it running indefinitely.
WEnd
HotKeySet("^v") ;unregister the hotkey

Func PastePlainText()
    Run($ptcPath);
    Send(ClipGet())
EndFunc

When you press Ctrl + V, this will run the PlainTextClipboard program, then send the contents of your clipboard to the current window. Unfortunately, it will send the contents one character at a time, so it is a bit slow. It's a problem I'm working on, but it should serve as a reasonable start. If there are any AutoHotKey/AutoIT gurus out there, feel free to make your own version of this script. I'll update it as soon as I figure out how to solve the problem.

Solution 4:

I keep running into this too. Other than using/writing a program to strip the extra formatting, the simplest way I've found to strip formatting is by pasting the text into the "Run" windows (reachable by WIN + R) and re-copying it from there.

So I end up doing this, really quickly: CTRL+C, WIN + R, CTRL+V, SHIFT+HOME, CTRL+C, ALT+TAB, CTRL+V - I can't help but wonder now if I've been doing this for too long...

Only works for single-line text, though.

Solution 5:

I can't provide you with a simple solution, but like the others, I will provide you with a workaround:

A shortcut to your first option is to use Ctrl + Alt + v to pop up the Paste Special dialog without using the mouse. Typing u to jump to Unformatted Unicode Text entry (or u u to get to the non-Unicode version) and then Enter will do it for you. Not perfect, but built in.