lesternope
New Member
- Joined
- Jul 31, 2017
- Messages
- 4
Hello,
I have a large table, in which I need to append to every line of column B (except the first) a comma + space key, and then add the contents of adjacent cell A right next to it.
so basically I want to go from this kind of table:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]Mr.[/TD]
[TD]Smith, John[/TD]
[/TR]
[TR]
[TD]Mrs. [/TD]
[TD]Miller, Betty[/TD]
[/TR]
</tbody>[/TABLE]
to this kind of table
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]Mr.[/TD]
[TD]Smith, John, Mr.[/TD]
[/TR]
[TR]
[TD]Mrs.[/TD]
[TD]Miller, Betty, Mrs.[/TD]
[/TR]
</tbody>[/TABLE]
anyone an idea on it? Thanks in advance!
I have a large table, in which I need to append to every line of column B (except the first) a comma + space key, and then add the contents of adjacent cell A right next to it.
so basically I want to go from this kind of table:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]Mr.[/TD]
[TD]Smith, John[/TD]
[/TR]
[TR]
[TD]Mrs. [/TD]
[TD]Miller, Betty[/TD]
[/TR]
</tbody>[/TABLE]
to this kind of table
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]A
[/TD]
[TD]B
[/TD]
[/TR]
[TR]
[TD]Mr.[/TD]
[TD]Smith, John, Mr.[/TD]
[/TR]
[TR]
[TD]Mrs.[/TD]
[TD]Miller, Betty, Mrs.[/TD]
[/TR]
</tbody>[/TABLE]
anyone an idea on it? Thanks in advance!