Convert text into columns

Please log in or register to do it.

This tool converts text into columns using custom delimiters. It provides flexible options so you can specify the delimiter that separates your text into columns as well as the delimiter used to join the columns in the output (e.g., tabs, commas, dashes). Simply enter your text and define both delimiters to suit your needs.

Custom Delimiters Conversion:

Enter the character(s) that separate your input values. Common delimiters include a comma (,), semicolon (;), pipe (|), space, etc.
Specify the character(s) to use between columns in the output. Examples include a tab (\t), comma (,), dash (-), and more.

Examples:

Example 1: Comma to Tab

Splits a comma-separated list and joins using a tab.

Before:
a,b,c
After:
a		b		c

Example 2: Semicolon to Comma

Splits a semicolon-separated list and joins using a comma.

Before:
apple;banana;cherry
After:
apple,banana,cherry

Example 3: Pipe to Dash

Splits a pipe-separated list and joins using a dash.

Before:
one|two|three
After:
one-two-three

Example 4: Space to Comma

Splits a space-separated list and joins using a comma.

Before:
red green blue
After:
red,green,blue

Example 5: Slash to Space

Splits a slash-separated list and joins using a space.

Before:
1/2/3
After:
1 2 3

Example 6: Colon to Pipe

Splits a colon-separated list and joins using a pipe.

Before:
alpha:beta:gamma
After:
alpha|beta|gamma

Example 7: Dot to Space

Splits a dot-separated string and joins using a space.

Before:
hello.world
After:
hello world

Example 8: Semicolon to Tab

Splits a semicolon-separated list and joins using a tab.

Before:
x;y;z
After:
x		y		z

Example 9: Dash to Space

Splits a dash-separated string and joins using a space.

Before:
cat-dog-mouse
After:
cat dog mouse

Example 10: Pipe to Colon

Splits a pipe-separated string and joins using a colon.

Before:
a|b|c|d
After:
a:b:c:d
Convert text to CamelCase
Extract only words where the first and last letter are uppercase

Your email address will not be published. Required fields are marked *