Merge & Compare
Join Text Line by Line
Merge the nth line of each list into a single line.
Merges several lists by position: the first line of each becomes one line of output, then the second, and so on. When the lists are different lengths there is no single right answer, so the behaviour is yours to choose — pad the gaps, stop at the shortest, or omit the missing values entirely.
Options
Placed between the values taken from each list.
Use \n for a new line, or something like ', ' for one long line.
List A
0lines0words0characters0 B
List B
0lines0words0characters0 B
2 of up to 6.
Output
0lines0words0characters0 B
Options explained
- Separator — Placed between the values taken from each list.
- Between lines — Use \n for a new line, or something like ', ' for one long line.