Copy Paste Code
suppose i have following text in my text file:
the apple is red in color.
and the sun shines in the morning.
now from the above 2 lines suppose i have to select following words in the sequence:
1 . the sun
2 . is red in color
3 . and
4 . shines in the morning.
and paste them to get the sentence:
the sun is red in color and shines in the morning.
what we do is for every word i''l have to first select it and then type ctrl+c to copy and ctrl+v to paste. then again for next selection i do the same copy paste operations.
so now can i write some code which will allow me to select multiple words from different sentences and and copy paste them all together to get a new sentence containing these words in the sequence in which i selected the words while copying?
the apple is red in color.
and the sun shines in the morning.
now from the above 2 lines suppose i have to select following words in the sequence:
1 . the sun
2 . is red in color
3 . and
4 . shines in the morning.
and paste them to get the sentence:
the sun is red in color and shines in the morning.
what we do is for every word i''l have to first select it and then type ctrl+c to copy and ctrl+v to paste. then again for next selection i do the same copy paste operations.
so now can i write some code which will allow me to select multiple words from different sentences and and copy paste them all together to get a new sentence containing these words in the sequence in which i selected the words while copying?
0