Loading...
Text input 1
Text input 2

Tool: Join text lines, side by side.

Purpose: Join multiple blocks of text by merging their lines/rows from right side to left side.
Instructions: Text will join from left to right. "Text input 1" line one will join with "Text input 2" line one and so on. To create more "Text input" boxes, click the "Create another text input box" button. For a prefix/suffix/delimiter, enter only one line of desired text into "Text input" box. To fill empty space due to uneven line counts, enter text into "Fill empty with" field. "Sample of joined text" field will display the first joined line.
Example:

Given a list of urls and a list of corresponding titles, goal is to join these two lists into HTML hyperlinks.

<a href="url">title</a>

Create 3 additional text input boxes by clicking "Create another text input box" three times.

Enter hyperlink tag's and href attribute's left side into "Text box 1" as a single line which will automatically be applied to every line of multi-line text:

<a href="

Enter url list into "Text input 2":

http://example.com/page1.html
http://example.com/page2.html
http://example.com/page3.html


Enter center text dividing url and it's title into "Text input 3" as a single line which will automatically be applied to every line of multi-line text:

">

Enter title list into "Text input 4":

Page 1
Page 2
Page 3


Enter closing tag into "Text input 5" as a single line which will automatically be applied to every line of multi-line text:

</a>

Click "Join text lines" button and joined text will load into working-text box producing:

<a href="http://example.com/page1.html">Page 1</a>
<a href="http://example.com/page2.html">Page 2</a>
<a href="http://example.com/page3.html">Page 3</a>