In Visual Studio, would there be way to paste the clipboard text with modification?
Basically I want to perform regex replacement (.*) and $1 kind of behavior without regex replacement.
For example, I would like to highlight text xxxx and replace it with /* obsolete xxxx */.
Pasting /* obsolete */ is not what I want to do because it is lacking xxxx
I cannot use regex listed above because I want to highlight any kind of word in the code.