I have a table with 2 columns.
I would like to divide all the values in column B into new row based on the char(10) end of line.
Sample table - before:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Product code[/TD]
[TD]Description[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- manual operation
- high voltage
- yellow color
- email notification
[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- automatic operation
- low voltage
- red color
- SMS notification
[/TD]
[/TR]
</tbody>[/TABLE]
Sample table - after:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Product code[/TD]
[TD]Description[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- manual operation
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- high voltage
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- yellow color
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- email notification[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- automatic operation
[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- low voltage[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- red color[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- SMS notification[/TD]
[/TR]
</tbody>[/TABLE]
Any ideas?
Thanks!
I would like to divide all the values in column B into new row based on the char(10) end of line.
Sample table - before:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Product code[/TD]
[TD]Description[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- manual operation
- high voltage
- yellow color
- email notification
[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- automatic operation
- low voltage
- red color
- SMS notification
[/TD]
[/TR]
</tbody>[/TABLE]
Sample table - after:
[TABLE="width: 500"]
<tbody>[TR]
[TD]Product code[/TD]
[TD]Description[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- manual operation
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- high voltage
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- yellow color
[/TD]
[/TR]
[TR]
[TD]110/1[/TD]
[TD]- email notification[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- automatic operation
[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- low voltage[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- red color[/TD]
[/TR]
[TR]
[TD]110/2[/TD]
[TD]- SMS notification[/TD]
[/TR]
</tbody>[/TABLE]
Any ideas?
Thanks!