copy pasting info into a table, any way i can do this?

BlackxHat

Power Member
Joined
Oct 6, 2009
Messages
729
Reaction score
89
I have a html table like this with few columns and several rows like the one below. I want to be able to copy a list of numbers or input data and paste it into one of the columns in one move.

Code:
<table border="1">
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"column 1 with random txt"</td>
<td>column 2 with random txt</td>
</tr>
</table>

So if i have a list like:
A
B
C
D

How can I copy that entire list of and paste it in the table? the only way i know how to is by copying each letter one by one and putting it into the table so it looks like this


Code:
<table border="1">
<tr>
<td>a</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>b</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>c</td>
<td>column 2 with random txt</td>
</tr>
<tr>
<td>"d</td>
<td>column 2 with random txt</td>
</tr>
</table>
 
Hi!
for that kind of tasks I used to use Excel and Notepad++. But I am not sure that it is what you are looking for, because it isn't automatic ( but it is really fast , less than 1/2 minutes)
So tell me if you are interested in this method.

(excuse me, I am not english ..)
 
How do you do it in notepad++ tho?
 
Back
Top