Questions tagged [paste]

The paste tag is to be used for issues relating to the paste portion of copy/paste operations.

Cut and paste and copy and paste offer user-interface paradigms for transferring text, data, files or objects from a source to a destination. The paste operation performs the copy to destination, whereas the source is often a clipboard. Often, hotkeys are employed to provide the paste functionality.

2546 questions
0
votes
1 answer

copy to clipboard with vim running in windows 10 cmd line window

I have a windows 10 PC. The VIM session is run from a command prompt window. Normally when I copy and paste, I do the following steps: 1. go into edit mode by typing ":" 2. select the text with mouse drag 3. right click on mouse button 4. move…
user97662
  • 942
  • 1
  • 10
  • 29
0
votes
0 answers

R - gsub paste combination returns gibberish

I am performing text analysis and trying to do some cleaning. I need to remove the following terms (if they occur) from a single element vector in R. The sample text and replacement I developed works well: library(stringr) original.v <- c("Every…
Englishman Bob
  • 377
  • 2
  • 13
0
votes
1 answer

How to get VIM to enter normal mode after Command + V paste in insert mode?

The workflow Id like is as follows Im in insert mode I paste using Command + V The text is pasted Normal mode is initiated Currently I remain in insert mode afterwards
Daniel Kobe
  • 9,376
  • 15
  • 62
  • 109
0
votes
0 answers

Pasting anywhere without Robot class

I want to be able to paste my text where the user currently is typing. It should be possible in every program. Not just mine. I already found this question. But I am of course not able to use the first, accepted answer because I want to be able to…
Lasnik
  • 256
  • 2
  • 11
0
votes
0 answers

Write and Past on CSV - Selenium , Python

How do I paste an element into a column of the csv file? The copied item is a piece of text in the browser (and I succeed with CTRL + C). however i would like to figure it out how to paste it. Thank you
lolino
  • 97
  • 1
  • 8
0
votes
0 answers

R pasteing data errors

I'm pulling my hair out because I need data sets input into R for a test but some of them are just too big to input by hand like i've been getting away with up until now. Every time I try and paste one of the teacher's data sets it shows up in error…
anna
  • 1
0
votes
1 answer

Call Variables from List in Loop in R

I have variables named var1, var2, ... var100 in data. How can I call them in a loop? I can loop over them and get the names as strings like this: for (i in c(sprintf("data$var%s",seq(1,100)))) { print(paste0(i)) } But this gives me only the…
jkortner
  • 549
  • 2
  • 8
  • 23
0
votes
1 answer

excel to powerpoint Shapes.PasteSpecial DataType:=0 random error

I am having trubbles with a VBA project. My goal is to make a powerpoint from an excel. Each line in the excel make a new slide, and all info are automatically placed. All rows have the same column number. Only one sheet in workbook, so no problem…
mat
  • 23
  • 6
0
votes
1 answer

OSX paste command not pasting whole line

I am trying to paste two files together file ip.txt 10.32.216.15 10.23.134.8 10.33.2.37 10.33.84.20 10.33.17.38 file obj.txt obj-10.32.216.15 obj-10.23.134.8 obj-10.33.2.37 obj-10.33.84.20 obj-10.33.17.38 and I use the command like this: paste…
Jesse_Pinkman
  • 565
  • 1
  • 8
  • 21
0
votes
1 answer

How to remove "\" from paste function output with quotation marks?

I'm working with the following code: Y_Columns <- c("Y.1.1") paste('{"ImportId":"', Y_Columns, '"}', sep = "") The paste function produces the following output: "{\"ImportId\":\"Y.1.1\"}" How do I get the paste function to omit the \? Such that,…
Sharif Amlani
  • 1,138
  • 1
  • 11
  • 25
0
votes
2 answers

Tmux 3.0a how to past command line under Ubuntu 20.0.4

I tried to copy and paste command line in tmux3.0a, under Ubuntu 20.0.04. First, i highlight the text, but somehow the highlight disappear right away. Then a list show up, from which there is a "copy" for me to choose. Say i copy the directory like…
0
votes
1 answer

past values from a data frame to column names of a matrix (in R)

I have a data frame with cell ID in row names and classification in column x. x ACCTTAC do ACCGTGG si AGTCGGG si I also have a matrix with cell IDs in columns and genes in rows. ACCTTAC ACCGTGG AGTCGGG Gene1 4 5 …
giegie
  • 463
  • 4
  • 11
0
votes
1 answer

when copying a range from excel and pasteSpecial to word I want to add a border line around the picture

I have two questions. 1 In word I can go to a bookmark "input", but I want to keep that one and paste my selection in a new bookmark one line below this one. I tried .selection.Collapse Direction:=wdCollapseEnd to go to the end and then insertLine…
Abe
  • 45
  • 3
0
votes
1 answer

VBA - open several files listed in range and copy/paste data in several worksheets

I looked everywhere and cannot find a fitting solution. In my source workbook I have a range in sheet "Basics" which contains several filenames. For example Range A1:A25 But not every cell in this range will contain a filename. Some will be empty. I…
0
votes
1 answer

Flutter - Paste text over other text already written in a TextField

I have a program that copies and pastes text in flutter, the problem is that when I copy the text and paste it, it replaces the one that was previously written, in this case I want to write over the text already written before and that it is pasted…
Daniel Salas DG
  • 69
  • 1
  • 11
1 2 3
99
100