Text Joiner Tool (Keeping Line Breaks)

About This Tool

What This Tool Does

The Text Joiner Tool allows you to quickly and easily combine multiple lines of text into a formatted list where each line is prefixed or suffixed with a custom joiner string, like "-" or ",". This tool is useful for creating bulleted lists, formatted text entries, or preparing data for spreadsheets and programming inputs.

How This Tool Works

You enter multiple text items, each on its own line, into the input box. Then, specify the joiner string you want to add at the beginning (start) or end of each line. The tool processes your input live by reading each line, trimming empty lines, and then concatenating the joiner string accordingly.

Examples

Starting Joiner Example

Input:

Arun
Avi
      

Joiner: -

Position: Starting

Output:

-Arun
-Avi
      

Ending Joiner Example

Input:

Arun
Avi
      

Joiner: -

Position: Ending

Output:

Arun-
Avi-